.irr file not displaying correctly (Tutorial 15)

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
HighTreason
Posts: 5
Joined: Thu Jan 31, 2008 7:37 pm

.irr file not displaying correctly (Tutorial 15)

Post by HighTreason »

Hi. I am having some trouble loading in a .irr file. The file opens fine in irrEdit. It's just the example.irr file and my code is exactly like the #15 tutorial except that it's in C# as I'm using the .NET cp wrapper.

Here's what it should look like according to irrEdit:
Image

Here's what it looks like in my application:
Image

Any ideas?
randomMesh
Posts: 1186
Joined: Fri Dec 29, 2006 12:04 am

Re: .irr file not displaying correctly (Tutorial 15)

Post by randomMesh »

Seems like a problem of missing files. Check your pathes.
Any messages in the console window?
"Whoops..."
MasterGod
Posts: 2061
Joined: Fri May 25, 2007 8:06 pm
Location: Israel
Contact:

Post by MasterGod »

As randomMesh said, the .irr file looks for the files in a specific place, open it in irrEdit, modifie/check the file's paths and make sure the files are in place in relative path to the exe file, e.g
../../media/practicle.tga
Image
Dev State: Abandoned (For now..)
Requirements Analysis Doc: ~87%
UML: ~0.5%
HighTreason
Posts: 5
Joined: Thu Jan 31, 2008 7:37 pm

Post by HighTreason »

Thanks, guys. And sorry for the silly newb question. I really should have figured that one out...
Post Reply