-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_set_fullscreen
drewmccluskey edited this page Feb 12, 2019
·
2 revisions
Sets the window to fullscreen or windowed mode
window_set_fullscreen(full)
Argument | Description |
---|---|
bool full |
true will set the window to fullscreen, false will set the window in windowed mode |
Returns: void
This function sets the state of the window to either fullscreen (true) or windowed mode (false).
window_set_fullscreen(true);
The above code will set the game window to fullscreen.
Back to window-functions