如题,控制台提示: cc.Sequence.initWithTwoActions(): arguments must all be non nil
程序里基本都是这样使用了sequence:
this.runAction(cc.sequence(
cc.delayTime(1)
, cc.callFunc(function() {
//
})
, cc.delayTime(1)
, cc.callFunc(function() {
//
})
));
请问有哪里不对吗?模拟器下明明一点问题都没的,但是run in web后就直接卡死了!求指教!
参考http://www.cocoachina.com/bbs/read.php?tid-239235.html