{{newin|[[0.9.0]]|090|type=function}}
Gets the button, axis or hat that a virtual gamepad input is bound to.
== Function ==
=== Synopsis ===
<source lang="lua">
inputtype, inputindex, hatdirection = Joystick:getGamepadMapping( axis )
</source>
=== Arguments ===
{{param|GamepadAxis|axis|The virtual gamepad axis to get the binding for.}}
=== Returns ===
{{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|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 ===
<source lang="lua">
inputtype, inputindex, hatdirection = Joystick:getGamepadMapping( button )
</source>
=== Arguments ===
{{param|GamepadButton|button|The virtual gamepad button to get the binding for.}}
=== Returns ===
{{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|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.

[[File:360_controller.png]]

== See Also ==
* [[parent::Joystick]]
* [[Joystick:isGamepad]]
* [[Joystick:isGamepadDown]]
* [[Joystick:getGamepadAxis]]
* [[love.joystick.setGamepadMapping]]
[[Category:Functions]]
{{#set:Description=Gets the button, axis or hat that a virtual gamepad input is bound to.}}
== Other Languages ==
{{i18n|Joystick:getGamepadMapping}}