@anthonyhui91 写道:
如有多个节点执行相同动作,只有最后一个节点成功执行,其他会报错,代码如下
onLoad: function () {
var fadeIn = cc.fadeIn(1);
this.node.getChildByName("menuBox").runAction(fadeIn);
this.node.getChildByName("Logo").runAction(fadeIn);
}报错
Simulator: C:/CocosCreator_v1.4.0-rc.3/resources/cocos2d-x/simulator/win32//src/jsb_polyfill.js:28950:TypeError: target is null
这样就没问题
onLoad: function () {
this.node.getChildByName("menuBox").runAction(cc.fadeIn(1));
this.node.getChildByName("Logo").runAction(cc.fadeIn(1));
}
帖子: 2
参与者: 1