-2
所以我試圖以統一的方式啓動和停止我的步行動畫5.3。如何在Unity 5.3(C#)中啓動/停止動畫
就是這樣。
If(Input.GetKey(KeyCode.RightArrow)){
GetComponent<Animator>().Play("WalkAnimation");
}
else If(!Input.GetKey(KeyCode.RightArrow)){
GetComponent<Animator>().Stop("WalkAnimation");
}
但不知何故,這對我來說真的沒什麼用。 提前感謝您的幫助。
統一提供各種主題,包括非常好的教程[動畫腳本](https://unity3d.com/learn/tutorials/topics/animation/animator-scripting?playlist=17099) – Hellium