GUI Skin?

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
Guest

GUI Skin?

Post by Guest »

How do you create your own skin? Can you make them have rounded corners? How do you remove the minimise and maximise buttons (which don't seem to do anything - how do you get them to work?)?
Thanks.
deps
Posts: 115
Joined: Sat Jan 10, 2004 5:22 pm
Location: Tranås, Sweden

Post by deps »

To hide the buttons:

Code: Select all

window = guienv->addWindow( core::rect< s32 >( 150,150, 300,320), true, L"Mywindow", 0, -1);

window->getMaximizeButton()->setVisible(false);
window->getMinimizeButton()->setVisible(false);

Post Reply