我的代码是:
function move(){
var A = new TWEEN.Tween(meshA.position).to({ z: -10 }, 2000).start();
var B = new TWEEN.Tween(meshB.rotation).to({ z: Math.PI }, 2000);
var C = new TWEEN.Tween(meshC.position).to({ x: 10 }, 2000);
A.chain(B);
B.chain(C);
C.chain(A);
animate();
}
但是,如果我想要同时启动多个补间,如何编码。 (A和B一起移动然后C)。
答案 0 :(得分:2)
将A和B组合在一起,然后C:
function move(){
var A = new TWEEN.Tween(meshA.position).to({ z: -10 }, 2000)
.onStart(function(){
new TWEEN.Tween(meshB.rotation).to({ z: Math.PI }, 2000).start();
}).start();
var C = new TWEEN.Tween(meshC.position).to({ x: 10 }, 2000);
A.chain(C);
C.chain(A);
animate();
}
Etvoilà!