Difference between revisions of "CTNTVirtualPad:setColor"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2019.4<br/> '''Class:''' VirtualPad<br/> === Description === Sets the VPAD components colors. <source lang="lua"> CTNTVirtualPad:...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Sets the VPAD components colors.
 
Sets the VPAD components colors.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
CTNTVirtualPad:setColor(padComponent, r, g, b)
 
CTNTVirtualPad:setColor(padComponent, r, g, b)
</source>
+
</syntaxhighlight>
  
 
'''padComponent''' possible values:
 
'''padComponent''' possible values:

Latest revision as of 15:26, 13 July 2023

Available since: Gideros 2019.4
Class: VirtualPad

Description

Sets the VPAD components colors.

CTNTVirtualPad:setColor(padComponent, r, g, b)

padComponent possible values:

  • PAD.COMPO_BUTTON1
  • PAD.COMPO_BUTTON2
  • PAD.COMPO_BUTTON3
  • PAD.COMPO_BUTTON4
  • PAD.COMPO_BUTTON5
  • PAD.COMPO_BUTTON6
  • PAD.COMPO_LEFTPAD for left joystick
  • PAD.COMPO_RIGHTPAD for right joystick

Parameters

padComponent: (number) the pad component to set the new color to
r: (number) red channel value (0 to 255)
g: (number) green channel value (0 to 255)
b: (number) blue channel value (0 to 255)