Difference between revisions of "Chroma:setKey"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 5: | Line 5: | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
<translate>Sets the LED colour for a specific key.</translate> | <translate>Sets the LED colour for a specific key.</translate> | ||
− | < | + | <syntaxhighlight lang="lua"> |
() = Chroma:setKey(keys,colors,flush) | () = Chroma:setKey(keys,colors,flush) | ||
</source> | </source> |
Revision as of 14:26, 13 July 2023
Available since: Gideros 2020.7
Class: chroma
Description
Sets the LED colour for a specific key. <syntaxhighlight lang="lua"> () = Chroma:setKey(keys,colors,flush) </source>
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