public bool OnTriggerExit(Collider other) { for (int i = 0; i < this.ActiveActions.get_Count(); i++) { SkillStateAction fsmStateAction = this.ActiveActions.get_Item(i); fsmStateAction.Init(this); fsmStateAction.DoTriggerExit(other); } this.RemoveFinishedActions(); return(this.fsm.IsSwitchingState); }