Unity 动态加载Animator Event 事件

简介: 搬迁原来博客海澜CSDN前一阵子频繁更改模型,总是手动添加动画事件 animator events一直比较麻烦,我就想能不能动态的生成对应的动画事件呢,然后找了一些资料,试了下感觉还不错,分享给大家,欢迎大家留言交流~需要注意的是修改后的动画事件重新动态加载后依然保留,猜测注册修改的是元数据,除非注销或者程序停止才能恢复。

搬迁原来博客海澜CSDN

前一阵子频繁更改模型,总是手动添加动画事件 animator events一直比较麻烦,我就想能不能动态的生成对应的动画事件呢,然后找了一些资料,试了下感觉还不错,分享给大家,欢迎大家留言交流~需要注意的是修改后的动画事件重新动态加载后依然保留,猜测注册修改的是元数据,除非注销或者程序停止才能恢复。
using UnityEngine;  
using System.Collections;  
  
public class DynamicLoading_AninatorEvents_SZQ : MonoBehaviour  
{  
  
    private Animator m_Animator = null;  
    private RuntimeAnimatorController m_runtimeAnimatorController = null;  
    private AnimationClip[] clips = null;  
    void Start()  
    {  
        m_Animator = GetComponent<Animator>();  
        // 获取运行时运行时动画器控制器  
        m_runtimeAnimatorController = m_Animator.runtimeAnimatorController;  
        //获取含有的动画片段  
        clips = m_runtimeAnimatorController.animationClips;  
  
        //根据动画名称设置对应的事件  
        for (int i = 0; i < clips.Length; i++)  
        {  
            if (clips[i].events.Length == 0)  
                switch (clips[i].name)  
                {  
                    case "animator_0":  
                        {  
                            AnimationEvent m_animator_0_Start = new AnimationEvent();  
                            AnimationEvent m_animator_0_Running = new AnimationEvent();  
                            AnimationEvent m_animator_0_End = new AnimationEvent();  
  
                            //对应事件触发相应函数的名称  
                            m_animator_0_Start.functionName = "Animator_0_Start_Event";  
                            m_animator_0_Running.functionName = "Animator_0_Running_Event";  
                            m_animator_0_End.functionName = "Animator_0_End_Event";  
  
                            //设定对应事件在相应动画时间轴上的触发时间点  
                            m_animator_0_Start.time = 0;//对应动画开始处触发  
                            m_animator_0_Running.time = clips[i].length * 0.5f;//中间  
                            m_animator_0_End.time = clips[i].length;//结尾  
  
                            //把事件添加到时间轴上  
                            clips[i].AddEvent(m_animator_0_Start);  
                            clips[i].AddEvent(m_animator_0_Running);  
                            clips[i].AddEvent(m_animator_0_End);  
                        }  
                        break;  
                    case "animator_1":  
                        {  
                            AnimationEvent m_animator_1_Start = new AnimationEvent();  
                            AnimationEvent m_animator_1_Running = new AnimationEvent();  
                            AnimationEvent m_animator_1_End = new AnimationEvent();  
  
                            //对应事件触发相应函数的名称  
                            m_animator_1_Start.functionName = "Animator_1_Start_Event";  
                            m_animator_1_Running.functionName = "Animator_1_Running_Event";  
                            m_animator_1_End.functionName = "Animator_1_End_Event";  
  
                            //设定对应事件在相应动画时间轴上的触发时间点  
                            m_animator_1_Start.time = 0;//对应动画开始处触发  
                            m_animator_1_Running.time = clips[i].length * 0.5f;//中间  
                            m_animator_1_End.time = clips[i].length;//结尾  
  
                            //把事件添加到时间轴上  
                            clips[i].AddEvent(m_animator_1_Start);  
                            clips[i].AddEvent(m_animator_1_Running);  
                            clips[i].AddEvent(m_animator_1_End);  
                        }  
                        break;  
                }  
        }  
        //重新绑定动画器的所有动画的属性和网格数据。  
        m_Animator.Rebind();  
  
    }  
    void Animator_0_Start_Event() { }  
    void Animator_0_Running_Event() { }  
    void Animator_0_End_Event() { }  
  
    void Animator_1_Start_Event() { }  
    void Animator_1_Running_Event() { }  
    void Animator_1_End_Event() { }  
  
  
    /// <summary>  
    /// 注销对应事件  
    /// </summary>  
    void UnSubscription()  
    {  
        for (int i = 0; i < clips.Length; i++)  
        {  
            clips[i].events = default(AnimationEvent[]);  
        }  
    }  
}  
img_69f8f13aab1a86b322d0bc8cdfaeab62.png
img_0f7adac021dafbd5137b31a6d817e79e.png
img_07c026135e706ae9349a9720fa718b38.png
相关文章
|
4月前
|
图形学 Android开发
小功能⭐️Unity调用Android常用事件
小功能⭐️Unity调用Android常用事件
|
3月前
|
图形学 开发者 UED
Unity游戏开发必备技巧:深度解析事件系统运用之道,从生命周期回调到自定义事件,打造高效逻辑与流畅交互的全方位指南
【8月更文挑战第31天】在游戏开发中,事件系统是连接游戏逻辑与用户交互的关键。Unity提供了多种机制处理事件,如MonoBehaviour生命周期回调、事件系统组件及自定义事件。本文介绍如何有效利用这些机制,包括创建自定义事件和使用Unity内置事件系统提升游戏体验。通过合理安排代码执行时机,如在Awake、Start等方法中初始化组件,以及使用委托和事件处理复杂逻辑,可以使游戏更加高效且逻辑清晰。掌握这些技巧有助于开发者更好地应对游戏开发挑战。
156 0
|
4月前
|
图形学 C# 开发者
全面掌握Unity游戏开发核心技术:C#脚本编程从入门到精通——详解生命周期方法、事件处理与面向对象设计,助你打造高效稳定的互动娱乐体验
【8月更文挑战第31天】Unity 是一款强大的游戏开发平台,支持多种编程语言,其中 C# 最为常用。本文介绍 C# 在 Unity 中的应用,涵盖脚本生命周期、常用函数、事件处理及面向对象编程等核心概念。通过具体示例,展示如何编写有效的 C# 脚本,包括 Start、Update 和 LateUpdate 等生命周期方法,以及碰撞检测和类继承等高级技巧,帮助开发者掌握 Unity 脚本编程基础,提升游戏开发效率。
100 0
|
4月前
|
图形学
小功能⭐️Unity Button按钮实现鼠标移入移出触发相应事件
小功能⭐️Unity Button按钮实现鼠标移入移出触发相应事件
|
4月前
|
图形学
|
6月前
|
安全 图形学
【unity实战】事件(Event)的基本实战使用
【unity实战】事件(Event)的基本实战使用
228 1
|
6月前
|
存储 图形学
【unity小技巧】unity事件系统创建通用的对象交互的功能
【unity小技巧】unity事件系统创建通用的对象交互的功能
67 0
|
6月前
|
图形学
【unity实战】基于权重的随机事件(附项目源码)
【unity实战】基于权重的随机事件(附项目源码)
46 0
|
图形学
Unity 事件系统
Unity 事件系统
115 0
|
存储 图形学
unity3d-EventSystem(事件)
unity3d-EventSystem(事件)
unity3d-EventSystem(事件)