cannot find texture in Q3 . BMP

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
hkolli
Posts: 42
Joined: Thu Jul 13, 2006 8:29 pm

cannot find texture in Q3 . BMP

Post by hkolli »

cannot find texture in Q3 . BMP ; textures/gothic_trim/metalblackwave01


i have included platformSDK in the options
i m getting this error near the command prompt . while executing the examples .

please let me know what has to be done .
luckymutt
Posts: 453
Joined: Sun Mar 06, 2005 11:56 pm
Location: C-Ville

Post by luckymutt »

First off, try not to cross-post.
Secondly, your question makes little sense.
Thirdly, you need to learn to use the search function.

To your question:
I am presuming that "Q3 .BMP" is a texture for your model.
Give a little more information, such as:
how are you loading your model?
are you loading the texture seperately?

If the texture is being loaded with the model, make sure the texture is in the same folder as the model.
If the texture is being loaded seperately, make sure the relative path in your code is correct.

I could keep guessing at what the solution might be, but it would be a LOT easier if you would frame your question better, and possibly even include the code you are using to load the model and/or texture (and use the

Code: Select all

 tags if you do)
Join us in the Irrlicht chatroom:
[url]irc://irc.freenode.net/irrlicht[/url]

I love deadlines. I like the whooshing sound they make as they fly by. -D.Adams
hkolli
Posts: 42
Joined: Thu Jul 13, 2006 8:29 pm

Post by hkolli »

sorry i wont repeat my mistake
hkolli
Posts: 42
Joined: Thu Jul 13, 2006 8:29 pm

Post by hkolli »

hi

i m using MSVC 6.0 . while executing the 2nd example in the tutorial . i get the textures in the media loaded but textures in q3 bmp : textures/../....

not loaded what has to be done regarding this . i included the micrsoft platform SDK . but still i have problem .

please help :( :oops:
AndyCR
Posts: 110
Joined: Tue Nov 08, 2005 2:51 pm
Location: Colorado, USA
Contact:

Post by AndyCR »

Does it seem to display alright? I get the same thing, but it still works for me; most likely they are just textures that are referenced in the map but never visibly used.
hkolli
Posts: 42
Joined: Thu Jul 13, 2006 8:29 pm

Post by hkolli »

ya it works for me ...... but i want to correct the message displayed on the console ... why does it says not loaded .....
luckymutt
Posts: 453
Joined: Sun Mar 06, 2005 11:56 pm
Location: C-Ville

Post by luckymutt »

OK, I see what you are saying now.
Simply put, those textures are not there, just as the console output is saying.

As described in the tutorial, the level is being extracted from a *.pk3 file, which is nothing more that a zip file.
Within that zip file is the model ("20kdm2.bsp") and all of its associated textures and assets.
Apparently, not all of the texures are in there.
If all of the textures were there, they would load without any error messages.
No big deal, since it is only there for the tutorial's example of showing that things can be loaded from a compressed archive, and that the engine can load Quake 3 maps.
Join us in the Irrlicht chatroom:
[url]irc://irc.freenode.net/irrlicht[/url]

I love deadlines. I like the whooshing sound they make as they fly by. -D.Adams
Vuen
Posts: 25
Joined: Tue Jul 11, 2006 8:03 am

Post by Vuen »

Yep, if it's displaying correctly, then you don't need them.

If you want the error messages to go away, just replace the files with blank textures and add them to the pk3.
Post Reply