I have set up my Irrlicht project folder and in it I have a scene folder, a mesh folder and a texture folder. I use Irredit to lay out the scene, but when I load the scene into my Irrlicht app. the paths that Irredit creates in the .irr file don't correspond to what Irrlicht wants. It looks like Irredit is using relative paths in the .irr file, but the stored paths are unncecessarily long.
For example:
Instead of saving the mesh path the way Irrlicht wants, like this:
<string name="Mesh" value="../meshes/room.3ds" />
or, in english, up 1 folder from the scene folder and down into the meshes folder;
Irredit does this,
<string name="Mesh" value="../../../../documents and settings/christopher/my documents/visual studio projects/irrlicht vb.net/irrlicht scene practice/meshes/room.3ds" />
When I try to load the scene in Irrlicht, it doesn't know what to do with this. Do I have to go in and modify all the paths in the .irr file?
puzzled