搭建自己的Unity知识体系Unity基础入门分享

二、动画——02、动画事件

2020-08-18  本文已影响0人  GameObjectLgy

目的:精确控制动画某一帧发生的事件,常用来校对同步效果。

public class GooseAnimationEvent : MonoBehaviour
    {
        Animationer animationer;

        private void Start()
        {
            animationer = this.GetComponent<Animationer>();
        }

        public void AnimationEventStartSpark(string msg)
        {
                Debug.Log("收到动画事件");
                //do something
        }
    }

以上两种方法Object赋值的都是你的脚本。

注意:这个事件脚本必须挂在这个物体带有Animator的物体上(其他物体不行)。否则会出现如下错误:
'NoviceKnight' AnimationEvent 'Skode_ActiveIdleLoop' has no receiver! Are you missing a component?
有时候如果你在使用别人的动画时莫名其妙报这个错误,就要去看看引入的动画是不是带了动画事件。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class CubeTest : MonoBehaviour
{
    Animation _anim;

    public GameObject target;

    private AnimationClip clip;

    void Start()
    {
        _anim = GetComponent<Animation>();

        clip = _anim.GetClip("cube2");

        AddAnimationEvent();

        if (_anim != null)
        {
            _anim.Play("cube2");
        }
    }

    /// <summary>
    /// 代码中自定义事件
    /// </summary>
    public void AddAnimationEvent()
    {

        //创建动画事件
        AnimationEvent animationEvent = new AnimationEvent();
        //设置事件回掉函数名字
        animationEvent.functionName = "CallFuncation";
        //传入参数
        animationEvent.objectReferenceParameter = target;
        //设置触发帧
        animationEvent.time = 1f;
        //注册事件
        clip.AddEvent(animationEvent);
    }

    /// <summary>
    /// 动画帧事件 
    /// </summary>
    public void CallFuncation()
    {
        Debug.Log("Animation Event Triggered !");
    }
}
3.gif
public class CubeTest : MonoBehaviour
{
    Animation _anim;

    public GameObject target;

    private AnimationClip clip;

    void Start()
    {
        _anim = GetComponent<Animation>();

        clip = _anim.GetClip("cube1");
        //clip = _anim.GetClip("cube2");

        AddAnimationEvent();

        if (_anim != null)
        {
            _anim.Play("cube1");
            //_anim.Play("cube2");
        }
    }

    /// <summary>
    /// 代码中自定义事件
    /// </summary>
    public void AddAnimationEvent()
    {

        //创建动画事件
        AnimationEvent animationEvent = new AnimationEvent();
        //设置事件回掉函数名字
        animationEvent.functionName = "CallFuncation";
        //传入参数
        animationEvent.objectReferenceParameter = target;
        //设置触发帧
        animationEvent.time = 1f;
        //注册事件
        clip.AddEvent(animationEvent);
    }

    /// <summary>
    /// 动画帧事件 
    /// </summary>
    public void CallFuncation()
    {
        Debug.Log("Animation Event Triggered !");
    }

    public void CallFunctionCube1()
    {
        Debug.Log("这是动画cube1");    
    }
}

其他问题:
有可能会遇到的问题,动画使用时报动画事件没有接收者的错误,那是因为在导入别人的动画时,动画本身带了事件,去掉即可解决。

上一篇 下一篇

猜你喜欢

热点阅读