How to get texture list?

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
AndyGFX
Posts: 5
Joined: Thu Dec 01, 2005 2:58 pm

How to get texture list?

Post by AndyGFX »

I need help, how to get texture name list from BSP after load and the change rendering from LIGHTMAP to per pixel lighting.
hybrid

Post by hybrid »

Unfortunately, most Irrlicht elements do not care for names. The texture names are usually available only within the loader. Same holds for Mesh Buffers which are often generated from named sub objects, but don't keep their names. Thus, changing such structures later on requires hard coded changes for each model. If you want to add support for such techniques in general you shoudl stick with changing the loader.
AndyGFX
Posts: 5
Joined: Thu Dec 01, 2005 2:58 pm

Post by AndyGFX »

thx
Post Reply