window_set_max_width(width);
Argument | Description |
---|---|
width | The maximum width in pixels for the game window. |
Returns:N/A
This function can be used to set a maximum window width for your
game. If you enable the window resize option in the Global Game
Settings for the target platform, then the player can resize the
game window to any size they wish, however by using this function
you can limit the maximum width to the size you specify. If you
wish to go back to the default behaviour (ie: no mimimum), then use
a value of -1.
NOTE: This function is only available on the
Windows, Mac OSX and Linux platforms.
window_set_min_width(640);
window_set_min_height(480);
window_set_max_width(1280);
window_set_max_height(960);
The above code will set the minimum and maximum width and height for the game window.