In this new version of three.js you have a method clone
.
For example, I use a queen from chess and I had to duplicate multiple times:
// queen is a mesh
var newQueen = queen.clone();
// make sure to re position to be able to see the new queen!
newQueen.position.set(100,100,100); // or any other coordinates
It will work with any mesh.
I used three.js r61.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…