[LayaAirIDE 2.0]怎么监听AnimationClip.addEvent添加的事件
let test_e:Laya.AnimationEvent = new Laya.AnimationEvent;
test_e.eventName = "move_over";
test_e.params = ["move"];
test_e.time = 0.2;
let test_cp:Laya.AnimationClip = this._ani.getDefaultState().clip;
test_cp.addEvent(test_e);
test_cp.on("move_over",this,this.test_over); 预想是播放到0.2秒就会发送"move_over",但事实好像不是这样的,那么怎么监听 通过addEvent注册的事件那
test_e.eventName = "move_over";
test_e.params = ["move"];
test_e.time = 0.2;
let test_cp:Laya.AnimationClip = this._ani.getDefaultState().clip;
test_cp.addEvent(test_e);
test_cp.on("move_over",this,this.test_over); 预想是播放到0.2秒就会发送"move_over",但事实好像不是这样的,那么怎么监听 通过addEvent注册的事件那
没有找到相关结果
已邀请:
要回复问题请先登录
0 个回复