Exemplo n.º 1
0
 public void ReloopAnimations(CharacterMode mode)
 {
     SetCurrentAnimation(mode.ToString(), true);
     if (AnimPlayer.IsDone())
     {
         AnimPlayer.Reset();
     }
 }
Exemplo n.º 2
0
 public void ReloopAnimations(CharacterMode mode)
 {
     SetCurrentAnimation(mode.ToString() + OrientationStrings[(int)CurrentOrientation]);
     if (AnimPlayer.IsDone())
     {
         AnimPlayer.Reset();
     }
 }
Exemplo n.º 3
0
 public void ResetAnimations(CharacterMode mode)
 {
     SetCurrentAnimation(mode.ToString());
     AnimPlayer.Reset();
 }
Exemplo n.º 4
0
 public void ResetAnimations(CharacterMode mode)
 {
     SetCurrentAnimation(mode.ToString() + OrientationStrings[(int)CurrentOrientation]);
     AnimPlayer.Reset();
 }