-
Creator 版本: 3.5.2
let t1 = tween(this.node.position).to(2.5, { x: -100 }) let t2 = tween(this.node.position).to(2.5, { y: 160 }, { easing: "quadOut" }) tween(this.node.position).parallel(t1, t2).start()
我想让节点x轴和y轴运动节奏不一样,上边的代码有问题,运行起来并不能移动到正确的位置,
请问正确的写法应该是怎样呢?

