Here's the current code snippet :
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();
}
However, I'm wondering how to make multiple tweens start simultaneously (A and B moving together, then C).