Ejemplo n.º 1
0
 public static void StateSet(string state)
 {
     UpdateState.End();
     Debug.Log("NextState->" + state);
     UpdateState = StateList[state];
     UpdateState.Start();
     LastState = NowState;
     NowState  = state;
 }