Hi,
I've been trying to load a mesh and show it. It keeps giving me an error regarding the images, although I have them placed in the data folder.
I use the following code:
Code:
//Vars
Actor ground2;
Mesh MyMesh;
PhysBody MyPhysBody;
...........
//in Init()
MyMesh.load("obj/test/test.mesh");
MyPhysBody.parts.New().createMesh(MyMesh);
ground2.create(MyPhysBody);
//In draw
ground2.draw();
I have the images and mesh placed using this path:
Data\Obj\test\test.mesh
Data\Obj\test\images\images_name.extension (this goes for all .mtrl's and images).
Yet, I'm receiving the following error:
" Can't load 'C:/Users\user.name(replaced my user name)/Desktop/test/images\ground.gfx' Additional path "obj/test\images" ".
The meshes and all have been modeled by a co-worker, loaded in the MeshEditor/Obj Editor, exported as .mesh, and sent to me! Any ideas?