Animator没有AnimatorController

时间:2018-07-17 12:34:26

标签: unity3d

我很困惑,我试图在击中某个对象时播放动画,正确检测到命中(尝试调试),然后我尝试播放该对象上存在的动画(通过Animator) enter image description here

但是它告诉我Animator没有AnimatorController并且不会播放动画。显然有一个AnimatorController,他实际上工作正常: enter image description here

我的代码:

  if (d.name == "furnacedef")
        {
            Debug.Log("attempt");
            Animator b= d.model.gameObject.GetComponent<Animator>();
            b.Play("burning");

        }

0 个答案:

没有答案