GetAnalogControlState: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Client function}} This retrieves the analog control state of a control. This is useful for detecting sensitive controls, such as those used on a joypad. ==Syntax== <syntaxhighlight lang="lua">[lua...)
 
mNo edit summary
Line 4: Line 4:


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">bool getAnalogControlState ( string controlName )</syntaxhighlight>
<syntaxhighlight lang="lua">float getAnalogControlState ( string controlName )</syntaxhighlight>


===Required Arguments===
===Required Arguments===

Revision as of 01:54, 14 February 2009

This retrieves the analog control state of a control. This is useful for detecting sensitive controls, such as those used on a joypad.

Syntax

float getAnalogControlState ( string controlName )

Required Arguments

  • controlName : the name of the control you wish to get the analog state of. Possible values are:
    • left
    • right
    • forwards
    • backwards
    • vehicle_left
    • vehicle_right
    • steer_forward
    • steer_back
    • accelerate
    • brake_reverse
    • special_control_left
    • special_control_right
    • special_control_up
    • special_control_down

Returns

Returns a float between 0 and 1 indicating the amount the control is pressed.

See Also