list of textures

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
Watcher
Posts: 40
Joined: Sat Jul 01, 2006 9:44 am
Location: Czech republic

list of textures

Post by Watcher »

Hi I would like to know how can I create and how looks like list of textures for texture animator.
JP
Posts: 4526
Joined: Tue Sep 13, 2005 2:56 pm
Location: UK
Contact:

Post by JP »

array<ITexture*> textureArray;
textureArray.push_back(<insert texture here>);
Image Image Image
Watcher
Posts: 40
Joined: Sat Jul 01, 2006 9:44 am
Location: Czech republic

Post by Watcher »

thank you
Post Reply