SHADE_Y3/TempScriptsFolder/PrintWhenActive.cs

11 lines
205 B
C#
Raw Normal View History

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