Skip to content

window_set_fullscreen

drewmccluskey edited this page Feb 12, 2019 · 2 revisions

window_set_fullscreen

Sets the window to fullscreen or windowed mode

Syntax:

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

Description:

This function sets the state of the window to either fullscreen (true) or windowed mode (false).

Example:

window_set_fullscreen(true);

The above code will set the game window to fullscreen.

Back to window-functions

Clone this wiki locally