i´m sorry, maybe my question is more c++ syntax than irrlicht, but i think someone can help me here.
I want to load several Itexture at the same time, but dont know how to use the right syntaxis in the string where the image position is defined.
I Create first an itexture array:
Code: Select all
video::ITexture *_pLoadingLogo[11];
Code: Select all
for (int i=0; i<12; i++)
{
_pLoadingLogo[i] = Env::Driver->getTexture("../data/textures/dummys/i.png");
}