-
Creator 版本:v1.10.1
-
目标平台: chrome浏览器
-
详细报错信息,包含调用堆栈:类型“AnimationState”上不存在属性“on”
-
重现方式:相同代码可以反复出现
-
之前哪个版本是正常的 :
-
手机型号 :
-
手机浏览器 :
-
编辑器操作系统 :win7
-
编辑器之前是否有其它报错 :
-
出现概率:100%
-
额外线索:
代码如下:
var animation = this.node.getComponent(cc.Animation);
// 对单个 cc.AnimationState 注册回调
var anim1 = animation.getAnimationState(‘anim1’);
anim1.on(‘lastframe’, this.onLastFrame, this);
正确的为:
var animation = this.node.getComponent(cc.Animation);
animation .on(‘lastframe’, this.onLastFrame, this);

