Search Issue Tracker
By Design
Votes
0
Found in [Package]
1.0
Issue ID
1214363
Regression
No
[Android]New input system - Touch input performance
Repro Steps:
1. Deploy the project to Android player as developer build.
2. Attach the build to the Profiler
3. Compare the performance between the current implementation of the Input system and the New Input system.
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
- 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
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
Resolution Note:
The time it takes for touch event to reach Unity script is quite significant, and varies between 3ms up 15ms, one of the reason is because touch event is received on UI thread and scripts are running on main thread, not to mention we have vsync which can also delay the touch event response time.
Nothing to fix at this moment, since there's no regression here, and there's actually an improvement when comparing old input vs new input