Search Issue Tracker
By Design
Votes
0
Found in
5.4.2f2
Issue ID
950555
Regression
No
[iOS] Input.GetKey() doesn't work with game controllers on some devices
Steps:
1. Build and Run user's project ("GameCntrollerSample.zip") on iOS device
2. Connect a game controller
3. Press buttons on game controller
Expected behavior: KeyCode is shown in the screen
Actual behavior: Text on the screen stays the same, Input.GetKey() does not register that buttons were pressed.
Test results:
iPhone SE | iOS9.3 | reproduced
iPhone 6 | iOS8.0 | not reproduced
iPad 5th gen | iOS10.3.3 | not reproduced
iPod 6th gen | iOS10.2.1 | not reproduced
iPhone 7 plus| iOS10.3.2 | not reproduced
Reproduced with: 2017.3.0a3, 20172.0b11, 2017.1.1p2, 5.4.6f1.
Used Horipad Ultimate game controller.
BY DESIGN:
This happens because 'GameController.framework' is not included in the Xcode project. We add it automatically if 'UnityEngine.Input.GetJoystickNames()' is called anywhere inside the Unity project to avoid including it in projects which do not use gamepads. So simple checking if any controllers are connected with 'Input.GetJoystickNames()' before executing any gamepad related code should fix this issue. Alternatively, you could add 'GameController.framework' to your project either manually or using https://docs.unity3d.com/ScriptReference/iOS.Xcode.PBXProject.AddFrameworkToProject.html.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Add comment