Beispiel #1
0
        public void Update()
        {
            currentAction = currentAction ?? GetDesiredAction();

            if (currentAction != null)
            {
                CharacterActionStatus actionStatus = currentAction.OnUpdate();

                switch (actionStatus)
                {
                case CharacterActionStatus.Running:
                    break;

                case CharacterActionStatus.Cancelled:
                    currentAction.OnCancel();
                    currentAction.OnCleanup();
                    currentAction = null;
                    break;

                case CharacterActionStatus.Completed:
                    currentAction.OnComplete();
                    currentAction.OnCleanup();
                    currentAction = null;
                    break;
                }
            }
        }
 public void Update() {
     currentAction = currentAction ?? GetDesiredAction();
     if (currentAction != null) {
         if (currentAction.OnUpdate()) {
             currentAction.OnComplete();
             currentAction = null;
         }
     }
 }
Beispiel #3
0
 public void Update()
 {
     currentAction = currentAction ?? GetDesiredAction();
     if (currentAction != null)
     {
         if (currentAction.OnUpdate())
         {
             currentAction.OnComplete();
             currentAction = null;
         }
     }
 }