.onRepeat()
const tween = new TWEEN.Tween(object) .to({ x: 100 }, 1000) .onRepeat(() => { console.log('一次循环完成,触发执行'); }) .onComplete(() => { console.log('整个动画最终循环完成触发'); }) .repeat(800) // 循环次数 .start();
← 6. 模型或标签淡入淡出