keenanwoodall / ShapesDoodles

Sketches done with the Shapes library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shapes Doodles

Sketches done with the wonderful Shapes library for Unity.

Comes with a helpful Doodle.cs base component which you can inherit from to see your sketches in edit mode.

After inheriting from the Doodle class, you can override the Setup, Cleanup, Step and Render functions to create your sketch. Plop your component on any object, and it will run while you have it selected in the inspector.'

public class SomeDoodle : Doodle
{
  public override void Render()
  {
    Draw.X(...);
  }
}

0

About

Sketches done with the Shapes library

License:MIT License


Languages

Language:C# 100.0%