gui not visible

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
corban
Posts: 35
Joined: Fri Nov 14, 2003 10:36 am
Contact:

gui not visible

Post by corban »

me again,

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();
	}
...
i'm using openGL (gForce) and win2k. what is my mistake?

greets,
corban
Post Reply