Exemplo n.º 1
0
 public void OnLateUpdate()
 {
     for (int i = 0; i < ActiveActions.Count; i++)
     {
         FsmStateAction fsmStateAction = ActiveActions[i];
         fsmStateAction.Init(this);
         fsmStateAction.OnLateUpdate();
     }
     CheckAllActionsFinished();
 }