Just a questions about Irrlicht Gui Customization.
Is possible change window shape?
I see the GUI Editor, but i think is possible change colors only.
Someone know more?
Gui customization
Re: Gui customization
You mean resize an IGUIWindow by click-dragging the corners and sides? If so, I'm not sure. I'm guessing not since I didn't see anything in the API for it. I'm pretty sure there is a manual way of changing the window size by API call though.Tonyx wrote:Just a questions about Irrlicht Gui Customization.
Is possible change window shape?
You want to change the color / skin of the window? See irr::gui::IGUISkin for more information or the examples / tutorials that use skins.Tonyx wrote:I see the GUI Editor, but i think is possible change colors only.
Someone know more?
There is a command in the API which allows the Irrlicht window to be resizeable. It is
If you want the window to be non-quadrilateral, though, that would be FAR more complicated.
As far as I know there is no way to make windows inside the GUI resizable and certainly no way to make them non-quadrilateral short of editing the engine's code.
I'm not certain any of this is what you were talking about, though.
Code: Select all
device->setResizeAble(true);
As far as I know there is no way to make windows inside the GUI resizable and certainly no way to make them non-quadrilateral short of editing the engine's code.
I'm not certain any of this is what you were talking about, though.
-
- Posts: 219
- Joined: Fri Apr 13, 2007 8:29 pm
- Location: Illinois
- Contact:
I assume your talking about the/a (?) GUI for display within an Irrlicht window. If you mean the actual window that shows the Irrlich content, then its a big noTonyx wrote:Thank you!
Yes i want make a windows non-quadrilateral, for examples with rounded corners, may be in a future version of irrlicht
Bye
Tony.
FlyingIsFun1217
Thanks - this is good news for me .Dances wrote:There is a command in the API which allows the Irrlicht window to be resizeable. It isCode: Select all
device->setResizeAble(true);