当前位置:   article > 正文

unity-动画中加入触发事件_failed to call animationevent jump of class player

failed to call animationevent jump of class playercontroller. the function m

在模型的动作中,插入个事件回调,常用于碰撞框开启和关闭、播放特效等
animator动画状态机模式(传送门)和animation模式下加入事件


1、animator模式

  1. 首先在模型上挂个脚本
    这里写图片描述

    代码如下

    public class charEvents : MonoBehaviour {
    
    public void ActionEvent1(string _arg1)
    {
        Debug.LogFormat("--- arg3:{0}", _arg1);
    }
    }
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
  2. 双击状态,在 Events 中添加事件,输入方法名 ActionEvent1,随便个参数
    这里写图片描述

  3. 注意事项

    • 只能在 ActionEvent1 声明0或1个参数,否则会报错
    • Failed to call AnimationEvent ActionEvent1 of class charEvents.
      The function must have either 0 or 1 parameters and the parameter can only be: string, float, int, enum, Object and AnimationEvent.

2、animation模式

在该模式下,会发现在模型的动画都是 read-only,不能编辑及插入事件,而自定义的animation就可以
这里写图片描述

解决方法,
直接把对应的动画重新拖进对应的动画中,就可以编辑加事件回调了,具体加事件的方法 点我
这里写图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/94558
推荐阅读
相关标签
  

闽ICP备14008679号