Пример #1
0
 public void OnFixedUpdate()
 {
     for (int i = 0; i < ActiveActions.Count; i++)
     {
         FsmStateAction fsmStateAction = ActiveActions[i];
         fsmStateAction.Init(this);
         fsmStateAction.OnFixedUpdate();
     }
     CheckAllActionsFinished();
 }