Difference between revisions of "love.joystickreleased"

m
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
 
Called when a joystick button is released.
 
Called when a joystick button is released.
 
== Function ==
 
== Function ==
 +
{{newin|[[0.9.0]]|090|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
love.joystickreleased( joystick, button )
 +
</source>
 +
=== Arguments ===
 +
{{param|Joystick|joystick|The joystick object.}}
 +
{{param|number|button|The button number.}}
 +
=== Returns ===
 +
Nothing.
 +
== Function ==
 +
{{oldin|[[0.9.0]]|090|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 13: Line 24:
 
== See Also ==
 
== See Also ==
 
* [[parent::love]]
 
* [[parent::love]]
 +
* [[love.joystickpressed]]
 
[[Category:Callbacks]]
 
[[Category:Callbacks]]
 
{{#set:Description=Called when a joystick button is released.}}
 
{{#set:Description=Called when a joystick button is released.}}
 +
{{#set:Subcategory=Joystick}}
 +
{{#set:Since=000}}
 +
== Other Languages ==
 +
{{i18n|love.joystickreleased}}

Latest revision as of 06:58, 31 October 2013

Called when a joystick button is released.

Function

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

Synopsis

love.joystickreleased( joystick, button )

Arguments

Joystick joystick
The joystick object.
number button
The button number.

Returns

Nothing.

Function

Removed in LÖVE 0.9.0
This variant is not supported in that and later versions.

Synopsis

love.joystickreleased( joystick, button )

Arguments

number joystick
The joystick number.
number button
The button number.

Returns

Nothing.

See Also


Other Languages