如题, tween的缓动效果
如何在节点中,对指定tween(如有多个)进行对应的停止控制。
另,能否在tween的.call()回调中进行停止控制(如下)?
tween(this.node)
.to(1, { position: new Vec3(0, 30, 0) }, { easing: 'quadOut' })
.call(() => {
log(1)
})
.to(2, { position: new Vec3(0, 0, 0) },{ easing: 'quadIn' })
.call(() => {
log(2)
})
.union()
.repeat(1) // 执行 1 次
.start();