Hi there, whats the best way of displaying the same animated model (NOT using the same animation name and animation time) multiple times in a scene.
When using static models i can just use the cloneObject() method or use new Object3d(obj), but using animated models the animation is copied as well and all models are animated synchronously.
Right now I actually use Loader.loadMD2 each time to get a new model into the scene.
Thx for the help :)
Try new Object3D(model, false); instead.
Uh, I should have thought about that myself ^^.
Well that's exactly what I needed. Once again thank your for the help.