Search Issue Tracker
By Design
Votes
0
Found in [Package]
1.3.0
Issue ID
1398295
Regression
No
[InputSystem] ButtonControl API calls produce duplicate / missing calls when working with Trigger Button
How to reproduce:
1. Open the user attached "InputSystem_TriggerIssue.zip" project
2. Open the "SampleScene" Scene found in the Assets folder
3. Connect an XboxOne or PS4 or PS5 controller
4. Enter Play Mode
5. Open the Console
6. Press the Right Trigger on the controller and release multiple times
Expected result: Consistent counts of "Pressed" and "Released"
Actual result: Inconsistent counts
Reproducible with: 1.1.1 (2019.4.36f1), 1.2.0 (2019.4.36f1, 2022.2.0a3), 1.3.0 (2019.4.36f1, 2020.3.27f1, 2021.2.10f1, 2022.1.0b6, 2022.2.0a3)
Couldn't test with: 1.0.2 - Errors correlating with code
Note:
- Tested with XboxOne controller
- Tested on macOS
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
- SystemInfo.get_graphicsDeviceName() is generating garbage GC Alloc when using Metal graphics API
- Crash on D3D12CommonShader::ApplyGpuProgram when attaching material which samples "_UnityFBInput0" to "Full Screen Pass Renderer Feature" Component
- SpeedTree meshes and objects count differs when comparing the numbers in the Player with the Editor
- Model and Prefab Preview icons are not updated after upgrading associated Materials to URP
- Game view is rendered white when viewing the Editor with HDR display and Post Proccesing is enabled on the Main Camera with 2D URP
Resolution Note:
In the bug the user was checking if(bc.wasPressedThisFrame) {...} else if(bc.wasReleasedThisFrame) {...} from button action callback bound to trigger.
If button was pressed and released in the same frame, it will not be possible to see second part executed.
Actions generally go via different mechanism of action phases, started->performed->canceled. So if we try printing them out like this:
if(context.started)
Debug.Log("Started");
else if(context.performed)
Debug.Log("Performed");
else if(context.canceled)
Debug.Log("Released");
Then in all cases it prints either Started->Performed->Released or Started->Released.