Example #1
0
 public void AnimationComplete(string animation)
 {
     Debug.LogFormat("GamePortal.AnimationComplete {0}", animation);
     m_gameController.OnStateExit(m_state);
     m_state = GameController.GCState.NONE;
 }
Example #2
0
 public void PlayAnimation(string anim_name, GameController.GCState state)
 {
     m_state = state;
     m_animation.Play(anim_name);
 }