i have a litte gui (status window) that show up properly when in the main loop there is only the gui but it won't show up when i want it to overlay the scene. my code:
Code: Select all
...
//main loop
while(device->run()) {
driver->beginScene(true, true, video::SColor(0, 0, 0, 0));
smanager->drawAll();
gui->drawAll();
driver->endScene();
}
...
greets,
corban