AnimationState.on
记得之前的AnimationState.on(xxx),当该AnimationState 结束后会自动释放,现在貌似直接挂到Animation上了?
http://docs.cocos.com/creator/manual/zh/animation/scripting-animation.html#实例

和上次一样?最后一帧不播放了?
我是这么解决的,回调结束后,反注册一下这个回调
大侠,请问如何反注册回调?
let animationState = this.getComponent(cc.Animation).play(“move”);
animationState.on(“stop”,function(){
animationState .off();
})
