Skip to content

window_get_height

drewmccluskey edited this page Feb 12, 2019 · 3 revisions

window_get_height

Returns window height

Syntax:

window_get_height()

Returns: int

Description:

Returns current window height.

Example:

int win_height = window_get_height();
show_debug_message(win_height.ToString());

The above code will set int win_height to the height of the current game window and then create a pop-up message displaying the current height.

Back to window-functions

Clone this wiki locally