2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "InputEventJoypadMotion" inherits= "InputEvent" version= "4.0" >
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 >
2020-08-05 14:43:40 +02:00
<link title= "InputEvent" > https://docs.godotengine.org/en/latest/tutorials/inputs/inputevent.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<members >
2021-03-25 21:56:12 +01:00
<member name= "axis" type= "int" setter= "set_axis" getter= "get_axis" enum= "JoyAxis" default= "0" >
2020-05-14 00:27:34 +02:00
Axis identifier. Use one of the [enum JoyAxis] 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>
</class>