Window_get_sizeable - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

NOTOC

Notation

Description

Gets whether the game window is able to be resized or not, and returns the result.

Parameters

  • none This function has no parameters.

Return Values

Returns boolean (true or false) whether the game window is sizeable.

Example Call

sizeable = window_get_sizeable();
if (sizeable) {
  //window is sizeable
} else {
  //window is not sizeable
}

Demonstrates testing whether the game window is sizeable.