cc.tween 会导致死循环

写法如下
cc.tween( this )
.call( this.func.bind(this) )
.repeatForever()
.start()

这样写以后会一致不断的调用func,浏览器直接卡住

类似这种效果
while(true)
this.func();

只能这样写
let tw = cc.tween(this);
tw.repeatForever(
tw.delay(0)
.call( this.func.bind(this) )
)
.start()