Difference between revisions of "Global Command: getWindowBrightness"

From The Official Visionaire Studio: Adventure Game Engine Wiki
 
(One intermediate revision by the same user not shown)
Line 26: Line 26:
 
|-
 
|-
 
| integer
 
| integer
| The current gamma/brightness value.
+
| The current gamma/brightness value in the range of 0 (completely dark) to 100 (normal brightness).
 
|}
 
|}
  

Latest revision as of 23:45, 15 May 2023

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 in the range of 0 (completely dark) to 100 (normal brightness).


Examples

Example 1: Do something, if the brightness value is less than 50%.

if getWindowBrightness() < 50 then
  -- do something
end