14/03/18 11:01:34.53 n60DNl4U.net
133です
下記の式で、ジャンプ出来るようになしましたが、
ジャンプモーション再生後に
Mot_runに戻るには、どう書いたらよいでしょうか?
function Start () {
animation.Play("Mot_run");
}
function Update () {
if (Input.GetButtonDown("Jump")) {
animation.Stop("Mot_run");
animation.Play("Mot_jump");
}
}