【tween】让节点永远转圈怎么搞,按文档试了不好使

代码如图,请用过的告知

union一下

   cc.tween(this.node).
       to(0, {angle: 0}).
       to(1, {angle: 360}).
       union().
       repeatForever().
       start();
1赞

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确实高大上了