Search Issue Tracker
Won't Fix
Votes
0
Found in
6000.4.0a4
Issue ID
UUM-119622
Regression
No
[tvOS] AppleTV remote controller's touchpad always returns the same value when the Input Action has a "D-Pad [Gamepad]" Binding
Reproduction steps:
1. Open the attached “tvOSInputIssue“ project
2. Build and Run the “Assets/Scenes/SampleScene“ Scene on an Apple TV device
3. In the Player, swipe the AppleTV remote controller’s touchpad
4. Observe the X and Y axis values in the middle of the screen
Expected result: The values increase proportionally to the swipe distance
Actual result: The values are either -0.707107 or 0.707107
Reproducible with: 1.8.0 (2022.3.47f1), 1.12.0 (2022.3.57f1, 6000.0.37f1, 6000.1.0b5, 6000.2.0a2)
Reproducible on: AppleTV 4th Gen 16.5 (tvOS 18.1)
Workaround: Remove “D-Pad [Gamepad]” Binding from the “Move” Input Action
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Package signature validation unexpectedly return an invalid signature status if the validation check is done after the code signing certificate validaty range has passed
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
Resolution Note:
This issue indeed exists when an action is using both stick and dpad values on tvOS. And it's actually a visible issue because tvOS always reports diagonal values for dpad e.g. (up + right) or (down + left) etc., but never only on one axis.
However, we don't want to filter dpad events from our side as that would be considered a breaking change. My suggestion is to use this work-around for tvOS:
#if PLATFORM_TVOS
moveAction.ApplyBindingOverride("*/leftStick");
#endif