Exemplo n.º 1
0
 private void Awake()
 {
     states = new Dictionary <BearState, BearStateBase> ();
     states.Add(BearState.Patrol, new PatrolState(this));
     states.Add(BearState.Alert, new AlertState(this));
     states.Add(BearState.Chase, new ChaseState(this));
     states.Add(BearState.Attack, new AttackState(this));
     currentState = states [BearState.Patrol];
 }
Exemplo n.º 2
0
 public void MakeTransition(BearState state)
 {
     Debug.Log(state);
     currentState = states[state];
     currentState.StartState();
 }