Quantcast
Channel: Cocos中文社区 - 最新主题
Viewing all articles
Browse latest Browse all 88746

runAction bug

$
0
0

@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

阅读整个主题


Viewing all articles
Browse latest Browse all 88746

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>