Difference between revisions of "Chroma:setKey"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 7: Line 7:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
() = Chroma:setKey(keys,colors,flush)
 
() = Chroma:setKey(keys,colors,flush)
</source>
+
</syntaxhighlight>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''keys''': (text) <translate>Name of they key to set the colour of.</translate><br/>
 
'''keys''': (text) <translate>Name of they key to set the colour of.</translate><br/>

Latest revision as of 15:26, 13 July 2023


Available since: Gideros 2020.7
Class: chroma

Description

Sets the LED colour for a specific key.

() = Chroma:setKey(keys,colors,flush)

Parameters

keys: (text) Name of they key to set the colour of.
keys: (table) Table of key names to set the colour of.
colours: (number) BGR colour value.
colours: (table) Multiple BGR colour values.
flush: (bool) True to send the colours to the device, default false. optional

Return values