Ogre.XML plugin nothing shown

Hi,



I'm having troubles with the Ogre Loader.



When I'm doing:

Node n1 = OgreLoader.readModelsFromOgreXML("/ogre/fish-scene.xml");

and I attach this node to the root node nothing is shown on the screen.

But when I do it this way:

Node n1 = OgreLoader.readModelsFromOgreXML("/ogre/fish-scene.xml");
Spatial s1 = n1.getChild("Fish");

and attach s1 to the root node I can see the fish.

Why doesn't it work the first way?

Greetings
Magnus

just so im clear on your first try did you attach n1 to the root node?

Yes, I attached n1 and s1 to the root node.