2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-03-01 01:44:37 +01:00
<class name= "InputEventJoypadMotion" inherits= "InputEvent" version= "4.1" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2023-04-28 01:35:33 +02:00
Represents axis motions (such as joystick or analog triggers) from a gamepad.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2023-04-28 01:35:33 +02:00
Stores information about joystick motions. One [InputEventJoypadMotion] represents one axis at a time. For gamepad buttons, see [InputEventJoypadButton].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2023-04-28 01:35:33 +02:00
<link title= "Using InputEvent" > $DOCS_URL/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>