window_set_min_width

This function can be used to set a minimum window width for your game. If you enable the window resize option in the Game Options 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 minimum width to the size you specify. If you wish to go back to the default behaviour (ie: no minimum), then use a value of -1.

NOTE This function is only available on the Windows, macOS and Linux platforms.

 

Syntax:

window_set_min_width(width);

Argument Type Description
width Real The minimum width in pixels for the game window.

 

Returns:

N/A

 

Example:

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.