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秒就会发送[size=14]"move_over"[/size][size=14],但事实好像不是这样的,那么怎么监听 通过[/size]addEvent注册的事件那