Difference between revisions of "CTNTVirtualPad:setJoyStyle"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Sets the VPAD joysticks movement style.
 
Sets the VPAD joysticks movement style.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
CTNTVirtualPad:setJoyStyle(padComponent, style)
 
CTNTVirtualPad:setJoyStyle(padComponent, style)
 
</source>
 
</source>

Revision as of 15:26, 13 July 2023

Available since: Gideros 2019.4
Class: VirtualPad

Description

Sets the VPAD joysticks movement style. <syntaxhighlight lang="lua"> CTNTVirtualPad:setJoyStyle(padComponent, style) </source>


padComponent possible values:

  • PAD.COMPO_LEFTPAD
  • PAD.COMPO_RIGHTPAD

style possible values:

  • PAD.STYLE_CLASSIC (default) joysticks are fixed
  • PAD.STYLE_MOVABLE joysticks move where user last touch the screen then is fixed to this position
  • PAD.STYLE_FOLLOW joystick follow user finger movement

Parameters

padComponent: (number) the pad component
style: (number) the joystick movement style (default = PAD.STYLE_CLASSIC)


STYLE_MOVABLE is a typo in the class (it should have been MOVEABLE) ;-)