Difference between revisions of "Joystick:getID"

(Added second return value)
m
Line 9: Line 9:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|number|id|The Joystick's unique identifier.}}
+
{{param|number|id|The Joystick's unique identifier. Remains the same as long as the game is running.}}
{{param|number|instance_id (nil)|Unique identifier which changes every time the Joystick is reconnected. nil if the Joystick is not connected.}}
+
{{param|number|instance_id (nil)|Unique instance identifier. Changes every time the Joystick is reconnected. nil if the Joystick is not connected.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::Joystick]]
 
* [[parent::Joystick]]

Revision as of 08:27, 28 August 2013

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

Gets the joystick's unique identifier. The identifier will remain the same for the life of the game, even when the Joystick is disconnected and reconnected, but it will change when the game is re-launched.

Function

Synopsis

id, instance_id = Joystick:getID( )

Arguments

None.

Returns

number id
The Joystick's unique identifier. Remains the same as long as the game is running.
number instance_id (nil)
Unique instance identifier. Changes every time the Joystick is reconnected. nil if the Joystick is not connected.

See Also

Other Languages