예제 #1
0
 public IEnumerator Execute()
 {
     while (true)
     {
         UnitAction.activeSource = GetComponent <UnitController>();
         UpdatePlan();
         UnitAction action = plan.Pop();
         Debug.Log(action.GetType());
         if (action != null)
         {
             if (typeof(ToggleAction).IsAssignableFrom(action.GetType()))
             {
                 ((ToggleAction)action).RunToggleAction();
                 yield return(null);
             }
             else
             {
                 UnitAction.activeSource = GetComponent <UnitController>();
                 yield return(StartCoroutine(action.RunAction()));
             }
         }
         else
         {
             yield return(null);
         }
     }
 }