GetNumJoysticks
From Spheriki
Obtain the number of joysticks detected on the system, usable by Sphere.
Contents |
[edit]
Usage
number GetNumJoysticks();
[edit]
Examples
var num_joysticks = GetNumJoysticks();
if (num_joysticks < 1)
Abort("You have NO joysticks!");
else
Abort("Good, you have " + num_joysticks + " joystick(s).");
This example checks how many joysticks Sphere can find.
[edit]
Notes
- This function determines the valid range of numbers for the other joystick-related functions. The range is
0toGetNumJoysticks() - 1.
- Many players will not have access to a joystick, so joystick input should be provided as an alternative to keyboard or mouse input, rather than a substitute.
[edit]
See Also
- Abort()

