SHADE_Y3/Assets/Scripts/PrintWhenActive.cs

9 lines
137 B
C#
Raw Permalink Normal View History

using SHADE;
public class PrintWhenActive : Script
{
protected override void update()
{
Debug.Log("Active!");
}
}