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

Unity之一天一个技术点(十五)

时间:2015-02-04 16:38:20      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:unity3d   animation   动画   

给unity3d的老版动画中,添加事件的方法(测试通过):

 
       AnimationEvent event0 = new AnimationEvent();
       event0.time =this.animation["run"].length * 0.2f;
       event0.functionName ="xxx";
       event0.stringParameter="哈哈!";
       animation["run"].clip.AddEvent(event0);

    public void xxx(string ss)
    {
        Debug.Log(ss);
    }

Unity之一天一个技术点(十五)

标签:unity3d   animation   动画   

原文地址:http://blog.csdn.net/myk7694503/article/details/43486929

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