-
Creator 版本:2.3.2 或 2.3.4
-
目标平台:
-
详细报错信息,包含调用堆栈:
-
重现方式:
-
之前哪个版本是正常的 :
-
手机型号 :
-
手机浏览器 :
-
编辑器操作系统 :
-
编辑器之前是否有其它报错 :
-
出现概率:
-
额外线索:
var test = cc.tween(this).repeat(3, cc.tween(this).call(() => { console.log(1) })) var test1 = cc.tween(this).call(() => { console.log(2) }) cc.tween(this).sequence(test, test1).start(); 输出 1 1 2 改成下面这样会输出 1 1 1 2 var test = cc.tween(this).repeat(3, cc.tween(this).call(() => { console.log(1) }).delay(1))//加了延迟1秒 var test1 = cc.tween(this).call(() => { console.log(2) }) cc.tween(this).sequence(test, test1).start();
NewProject1.rar (651.9 KB)