Beispiel #1
0
        private IEnumerator NextStateRoutine(BaseBattleState nextState)
        {
            yield return(new WaitForSeconds(Configurations.FirstPlayer));

            OnNextState(nextState);
        }
Beispiel #2
0
 protected virtual void OnNextState(BaseBattleState nextState)
 {
     Fsm.PopState();
     Fsm.PushState(nextState);
 }