I’m trying to get a joystick to work but I am not having any luck. The computer sees the joystick and it moves the cursor across the screen, but that is all. I’ve tried changing values in the input manager, but no response from joystick. I tried a script this script
var water : GameObject;
function Update () {
if (Input.GetKey ("joystick button 1")) {
Destroy (water);
}
}
Make sure another application is not “owning the Device”. It sounds to me like a device emulation program is already passing the joystick as a Mouse.
Make sure it is you have the right classification for the device.
Sometimes device manufacturers have two classifications… for a USB device. One which maybe a mouse the second which may require a device driver or (kext driver) to enable the additional device features.