Well if you want icons to be static, just create the image like this
Code: Select all
env->addImage(driver->getTexture("../../media/irrlichtlogo2.png"),
core::position2d<s32>(10,10));
taken straight outta the irrlicht tutorial, its a hud icon
and is drawn whenever
Code: Select all
env->drawAll();
Look at the tutorials :
http://irrlicht.sourceforge.net/tut011.html
[/code]