【cocos creator】动作系统回调使用
程序员文章站
2024-03-16 16:48:46
...
var callback = cc.callFunc(function () {
cc.log("回调函数");
}, this);
this.action3 = cc.sequence(cc.rotateTo(0.5, 0), callback);
this.node.runAction(this.action3);
上一篇: 素数检测算法