//it does not work without being loaded by the standard animation package using animationproviders
//so relaping it here
Spatial troll = n.getChild("troll");
if(troll != null){
n.detachChild(troll);
VisibleModel newtroll = new VisibleModel(null);
newtroll.attachVisuals();
newtroll.setLocalTranslation(troll.getLocalTranslation());
n.attachChild(newtroll);
}
//this is needed as the chars are on a different node and would not be rendered
//just add, do not remove here..
for(Light l : n.getLocalLightList()){