Difference between revisions of "Joystick:isDown"

(Created page)
 
(Added notice about 0.9.0 bug)
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function|text=It has been moved from [[love.joystick.isDown]]}}
 
{{newin|[[0.9.0]]|090|type=function|text=It has been moved from [[love.joystick.isDown]]}}
 
Checks if a button on the Joystick is pressed.
 
Checks if a button on the Joystick is pressed.
 +
 +
{{notice|There is a bug in version [[0.9.0]] which requires the button indices passed to Joystick:isDown to be 0-based instead of 1-based, for example button 1 would be 0 for this function.}}
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 04:31, 23 December 2013

Available since LÖVE 0.9.0
It has been moved from love.joystick.isDown.

Checks if a button on the Joystick is pressed.

O.png There is a bug in version 0.9.0 which requires the button indices passed to Joystick:isDown to be 0-based instead of 1-based, for example button 1 would be 0 for this function.  


Function

Synopsis

anyDown = Joystick:isDown( button1, button2, button3, ... )

Arguments

number buttonN
The index of a button to check.

Returns

boolean anyDown
True if any supplied button is down, false if not.

See Also

Other Languages