2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 01:03:48 +00:00
<class name= "InputEventJoypadMotion" inherits= "InputEvent" version= "4.0" >
2017-09-12 20:42:36 +00:00
<brief_description >
2019-06-21 23:04:47 +00:00
Input event type for gamepad joysticks and other motions. For buttons, see [code]InputEventJoypadButton[/code].
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2019-03-29 22:37:35 +00:00
Stores information about joystick motions. One [InputEventJoypadMotion] represents one axis at a time.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
2020-08-05 12:43:40 +00:00
<link title= "InputEvent" > https://docs.godotengine.org/en/latest/tutorials/inputs/inputevent.html</link>
2017-09-12 20:42:36 +00:00
</tutorials>
<methods >
</methods>
<members >
2021-03-25 20:56:12 +00:00
<member name= "axis" type= "int" setter= "set_axis" getter= "get_axis" enum= "JoyAxis" default= "0" >
2020-05-13 22:27:34 +00:00
Axis identifier. Use one of the [enum JoyAxis] axis constants.
2017-09-12 20:42:36 +00:00
</member>
2019-06-29 10:38:01 +00:00
<member name= "axis_value" type= "float" setter= "set_axis_value" getter= "get_axis_value" default= "0.0" >
2017-10-15 22:07:13 +00: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 20:42:36 +00:00
</member>
</members>
<constants >
</constants>
</class>