-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_get_height
drewmccluskey edited this page Feb 12, 2019
·
3 revisions
Returns window height
window_get_height()
Returns: int
Returns current window height.
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