// Start is called before the first frame update void Start() { for (int i = 0; i < conditions.Length; i++) { conditions[i].Init(this); } defaultReaction.Init(this); }
internal void Init(MonoBehaviour mono) { for (int i = 0; i < conditions.Length; i++) { conditions[i].Init(); } reaction.Init(mono); }