
代码如图,请用过的告知

代码如图,请用过的告知
union一下
cc.tween(this.node).
to(0, {angle: 0}).
to(1, {angle: 360}).
union().
repeatForever().
start();
cc.tween(this.circleNode).by(this._circleTime, { angle: 360 }).repeatForever().start();
或
cc.tween(this.circleNode).repeatForever(
cc.tween().to(this._circleTime, { angle: 360 }).call(() => {
self.circleNode.angle = 0;
})
).start();
这两种,都能实现.

感谢大家的回复,感觉tween确实高大上了