window_set_min_height

Sets a minimum height for the game window.

Syntax:

window_set_min_height(height);


Argument Description
height The minimum height in pixels for the game window.


Returns:N/A


Description

This function can be used to set a minimum window height 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 minimum height 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.


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.


Back: The Game Window
Next: window_set_max_height
© Copyright YoYo Games Ltd. 2018 All Rights Reserved