- 228 名前:名前は開発中のものです。 [2014/03/22(土) 14:12:08.14 ID:3A38vlrO.net]
- >>218
ありがとうございます。 そうですね、現状厳しいです。。。 >>220 ご連絡いただきました式をいれましたが、 こういうことでは無いですよね。。。 #pragma strict var Jumpflg=false; function Update () { if(Jumpflg==false){ animation.Play("dance"); if(Input.GetButtonDown("Jump")){ Jumpflg=true; StartCoroutine("Jumping"); } } } function Jumping(){ animation["dance"].time animation.Play("jump"); yield WaitForSeconds(1.0); Jumpflg=false; animation["dance"].Play() }
|

|