我想通過回調函數傳遞一個對象onUpdateTween(groups[i], this);
但它沒有給我正確的對象。它只給我組數組的最後一個對象。我該如何解決這個問題?回調函數中的引用
function transform(duration) {
for (var i = 0; i < groups.length ; i ++) {
new TWEEN.Tween(object.rotation)
.to(rot , duration)
.easing(TWEEN.Easing.Exponential.InOut)
.onUpdate(function() {
onUpdateTween(groups[i], this);
})
.start();
}
}
thx!你也是Samuel Caillerie'這個'沒有問題 – busyBee