Gamepad is connected but not displaying the name
Unsolved
General and Desktop
-
I want to configure my Joystick .For that, initially I tried to check the connection details. The joystick is connected but it is not displaying the name. Also, GamepadManager.connectedgamepads returns empty set .I'm using Logitech Joystick..All its buttons and axis are properly responding
Gamepad { id: gamepad onConnectedChanged: { if (gamepad.connected) { console.log("Gamepad connected: " + gamepad.name); } else { console.log("Gamepad disconnected"); } } }
-
Where do you have
gamepad.name
?!