Code: Select all
gui::IGUIEnvironment* env = device->getGUIEnvironment();
gui::IGUIFont* font = env->getBuiltInFont();
//env->addStaticText(L"Hello World! This is the Irrlicht Software engine!", core::rect<int>(10,210,200,330), true);
font->draw(L"TEST",core::rect<s32>(10,210,200,430), video::SColor(255,255,255,255));
[...]
Main Loop:
env->drawAll();
Im using Opengl + Linux just in case..
thx