11 lines
205 B
C#
11 lines
205 B
C#
|
using SHADE;
|
|||
|
|
|||
|
public class PrintWhenActive : Script
|
|||
|
{
|
|||
|
public PrintWhenActive(GameObject gameObj) : base(gameObj) { }
|
|||
|
|
|||
|
protected override void update()
|
|||
|
{
|
|||
|
Debug.Log("Active!");
|
|||
|
}
|
|||
|
}
|