Difference between revisions of "Joystick:getGamepadMapping"

m
m
 
Line 10: Line 10:
 
=== Returns ===
 
=== Returns ===
 
{{param|JoystickInputType|inputtype|The type of input the virtual gamepad axis is bound to.}}
 
{{param|JoystickInputType|inputtype|The type of input the virtual gamepad axis is bound to.}}
{{param|number|inputindex|The index of the Joystick's button, axis or hat that the virtual gamepad axis is bound to.}}
+
{{param|number|inputindex|The 1-based index of the Joystick's button, axis or hat that the virtual gamepad axis is bound to.}}
 
{{param|JoystickHat|hatdirection (nil)|The direction of the hat, if the virtual gamepad axis is bound to a hat. nil otherwise.}}
 
{{param|JoystickHat|hatdirection (nil)|The direction of the hat, if the virtual gamepad axis is bound to a hat. nil otherwise.}}
 
=== Notes ===
 
=== Notes ===
Line 24: Line 24:
 
=== Returns ===
 
=== Returns ===
 
{{param|JoystickInputType|inputtype|The type of input the virtual gamepad button is bound to.}}
 
{{param|JoystickInputType|inputtype|The type of input the virtual gamepad button is bound to.}}
{{param|number|inputindex|The index of the Joystick's button, axis or hat that the virtual gamepad button is bound to.}}
+
{{param|number|inputindex|The 1-based index of the Joystick's button, axis or hat that the virtual gamepad button is bound to.}}
 
{{param|JoystickHat|hatdirection (nil)|The direction of the hat, if the virtual gamepad button is bound to a hat. nil otherwise.}}
 
{{param|JoystickHat|hatdirection (nil)|The direction of the hat, if the virtual gamepad button is bound to a hat. nil otherwise.}}
 
=== Notes ===
 
=== Notes ===

Latest revision as of 00:38, 14 January 2023

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Gets the button, axis or hat that a virtual gamepad input is bound to.

Function

Synopsis

inputtype, inputindex, hatdirection = Joystick:getGamepadMapping( axis )

Arguments

GamepadAxis axis
The virtual gamepad axis to get the binding for.

Returns

JoystickInputType inputtype
The type of input the virtual gamepad axis is bound to.
number inputindex
The 1-based index of the Joystick's button, axis or hat that the virtual gamepad axis is bound to.
JoystickHat hatdirection (nil)
The direction of the hat, if the virtual gamepad axis is bound to a hat. nil otherwise.

Notes

Returns nil if the Joystick isn't recognized as a gamepad or the virtual gamepad axis is not bound to a Joystick input.

Function

Synopsis

inputtype, inputindex, hatdirection = Joystick:getGamepadMapping( button )

Arguments

GamepadButton button
The virtual gamepad button to get the binding for.

Returns

JoystickInputType inputtype
The type of input the virtual gamepad button is bound to.
number inputindex
The 1-based index of the Joystick's button, axis or hat that the virtual gamepad button is bound to.
JoystickHat hatdirection (nil)
The direction of the hat, if the virtual gamepad button is bound to a hat. nil otherwise.

Notes

Returns nil if the Joystick isn't recognized as a gamepad or the virtual gamepad button is not bound to a Joystick input.

Notes

The physical locations for the virtual gamepad axes and buttons correspond as closely as possible to the layout of a standard Xbox 360 controller.

360 controller.png

See Also

Other Languages