this.node.runAction(cc.sequence(cc.moveBy(0.5,200, 0),
cc.callFunc(function(target,event) {
this.stop=true;
}, this,{type:"end",index:this.index})));
为什么moveBy还没到终点callFunc就已经调用了?
this.node.runAction(cc.sequence(cc.moveBy(0.5,200, 0),
cc.callFunc(function(target,event) {
this.stop=true;
}, this,{type:"end",index:this.index})));
为什么moveBy还没到终点callFunc就已经调用了?
你是怎么判断moveBy还没有到终点,callFunc就已经调用了的?
我这边用1.2.0 RC2测试并没有你说的问题,以下是我的代码

我怀疑是你判断那里出的问题,而且我觉得你代码肯定还有一些没有贴出来