cc.tween(node).re[eatForever()方法使用,代码如下:
cc.tween(this.node)
.repeatForever(
cc.tween()
.to(10, {position: cc.v2(0, 500)})
.call(()=>{this.node.y = 0;})
).start();运行报错,TypeError: Cannot read property ‘startWithTarget’ of null,应该是传入的参数Tween有问题,但是不知怎么样才是正确的使用方式,求帮助!!!!