Window_get_alpha - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Gets the transparency of the game window and returns it.
Parameters
Parameter | Description |
---|---|
none | This function has no parameters. |
Return Values
integer: Returns the transparency of the window, between 0 (transparent) and 255 (opaque)
Example Call
// demonstrates obtaining the transparency of the game window
var alpha;
alpha = window_get_alpha();
NOTOC