public void Idle()
 {
     //Debug.LogFormat("Idle");
     m_StandardAnimator.Loop(string.Empty, "idle");
 }
Esempio n. 2
0
 public void Idle(bool hasGun)
 {
     //Debug.LogFormat("Idle");
     m_StandardAnimator.Loop(string.Empty, hasGun ? "idle_gun" : "idle_nogun");
 }