Custom Triggers

[AddComponentMenu("")]
public class IgniterCollisionEnter : Igniter
{
#if UNITY_EDITOR
public new static string NAME = "Example/Example";
public new static bool REQUIRES_COLLIDER = true;
#endif
void Start()
{
this.ExecuteTrigger(null);
}
}Last updated
Was this helpful?