2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "InputEventJoypadMotion" inherits= "InputEvent" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-06-22 01:04:47 +02:00
Input event type for gamepad joysticks and other motions. For buttons, see [code]InputEventJoypadButton[/code].
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-03-29 23:37:35 +01:00
Stores information about joystick motions. One [InputEventJoypadMotion] represents one axis at a time.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2018-11-05 08:46:27 +01:00
<link > https://docs.godotengine.org/en/latest/tutorials/inputs/inputevent.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "axis" type= "int" setter= "set_axis" getter= "get_axis" default= "0" >
2019-03-27 20:01:16 +01:00
Axis identifier. Use one of the [enum JoystickList] axis constants.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "axis_value" type= "float" setter= "set_axis_value" getter= "get_axis_value" default= "0.0" >
2017-10-16 00:07:13 +02:00
Current position of the joystick on the given axis. The value ranges from [code]-1.0[/code] to [code]1.0[/code]. A value of [code]0[/code] means the axis is in its resting position.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
</constants>
</class>