码迷,mamicode.com
首页 > 编程语言 > 详细

关于Unity中的Animator使用animator.Play()不能重复播放同一个Animatoin的解决方案

时间:2015-06-07 01:04:17      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:

使用如下代码,连续按两次T,动画只会播放一次:

public Animator currentAnimator;

void Update()
{
    if(Input.GetKeyDown(KeyCode.T))
    {
        currentAnimator.Play("attack_1");
    }
}

如果想要可以两次,使用如下代码:

public Animator currentAnimator;

void Update()
{
    if(Input.GetKeyDown(KeyCode.T))
    {
        currentAnimator.Play("attack_1",0,0f);
    }
}

关于Unity中的Animator使用animator.Play()不能重复播放同一个Animatoin的解决方案

标签:

原文地址:http://www.cnblogs.com/misterjoker/p/4557542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!