-
Notifications
You must be signed in to change notification settings - Fork 0
Window_get_sizeable
hpgDesigns edited this page Aug 8, 2021
·
1 revision
NOTOC
Gets whether the game window is able to be resized or not, and returns the result.
- none This function has no parameters.
Returns boolean (true or false) whether the game window is sizeable.
sizeable = window_get_sizeable();
if (sizeable) {
//window is sizeable
} else {
//window is not sizeable
}Demonstrates testing whether the game window is sizeable.
This is number 1