-
Creator 版本: 3.8.1
-
目标平台:微信小游戏, 不过是在PC端支行时发现的. 还没有在微信上运行过
tween({x: 0})
.to(duration, {x: 1}, {
easing: 'cubicOut',
onUpdate(t, v) {
// 这里的v, 是线性的, 并没有应用 easing 函数
}
})
.start()
