Global Command: getWindowBrightness
From The Official Visionaire Studio: Adventure Game Engine Wiki
Returns the brightness (gamma) of the window. A value of 0 is completely dark, 100 is normal brightness.
Related functions | setWindowBrightness |
Syntax
getWindowBrightness()
Parameters
none
Return values
Type | Description |
---|---|
integer | The current gamma/brightness value. |
Examples
Example 1: Do something, if the brightness value is less than 50%.
if getWindowBrightness() < 50 then
-- do something
end