I create clones of models with JointControllers with following code:
Node newNode = new Node("NPC" + id);
ModelCloneCreator cc = new ModelCloneCreator(n);
cc.addProperty("spatialcontroller");
cc.addProperty("jointcontroller");
cc.addProperty("indices");
cc.addProperty("vertices");
cc.addProperty("obbtree");
n.putClone(newNode, cc);
If I use setTimes(int, int) on one of the controllers in a cloned node all instances change their animation.
Is that a problem of the cloning or are there some other properties hidden?