Hi,
I'm have Irrlicht with widget and I need to modify the sreen size, but I didn't find a function that makes this in the API Documentation, I tried to change the size of window with device->setResizeAble(true), doesn't work..
exist any way of changing the screen size?
Thank you,
A simple question...I think
-
- Posts: 448
- Joined: Tue Oct 05, 2004 3:24 am
- Location: Boston, MA
What you want to do is set it up when you create the device like this.
irrDevice = createDevice(EDT_SOFTWARE, dimension2d<s32>(800, 600), 32,
false, false, false, 0);
Of course using the params and render hardware of choice.
irrDevice = createDevice(EDT_SOFTWARE, dimension2d<s32>(800, 600), 32,
false, false, false, 0);
Of course using the params and render hardware of choice.
Irrlicht Moderator || Game Designer
Learn the basics at </dream.in.code>
Learn the basics at </dream.in.code>