Search Issue Tracker
Fixed
Fixed in 2021.3.31f1, 2022.3.10f1, 2023.1.14f1, 2023.2.0b10, 2023.3.0a5
Votes
0
Found in
2021.3.27f1
2022.3.2f1
2023.1.0f1
2023.2.0a15
2023.3.0a4
Issue ID
UUM-40352
Regression
No
ScrollView produces jittery animation when playing PostPointerUpAnimation
In line 1574 of “ScrollView.cs” ([https://github.com/Unity-Technologies/UnityCsReference/blob/2023.2/ModuleOverrides/com.unity.ui/Core/Controls/ScrollView.cs#L1559)|https://github.com/Unity-Technologies/UnityCsReference/blob/2023.2/ModuleOverrides/com.unity.ui/Core/Controls/ScrollView.cs#L1559)|smart-link]) PostPointerUpAnimation is executed every 30ms (schedule.Execute(PostPointerUpAnimation).Every(30)) which produces jittery animation.
The user suggested changing “.Every(30)” into “.Until(() => false)” which would execute animation every frame and produce far better results.
Reproducible with: 2023.2.0a15 (by the reporter)
Reproducible on: Windows 10 (by the reporter)
Notes:
- Not reproduced by CQA
- Forums mentioning the issue: [https://forum.unity.com/threads/scrollview-has-a-few-bugs.1162652/|https://forum.unity.com/threads/scrollview-has-a-few-bugs.1162652/], [https://forum.unity.com/threads/scrollview-value-changed-callback.1441750/#post-9048712|https://forum.unity.com/threads/scrollview-value-changed-callback.1441750/#post-9048712]
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
- Rendering locks up when not looking at a transparent material on Meta Quest 2
- Volumetrics break when using a Custom Pass to create a Thickness Buffer for Alpha Clipping
- All tests are run instead of only the failed ones when the "Rerun Failed" button is pressed
- GameObject is not masked when the "Render PostProcessing Effects" pass executes with a resolved non-MSAA Color target and MSAA DepthStencil target
- [Android] Gfx.WaitForGfxCommandsFromMainThread high performance usage and inconsistency when built Player scene has Canvas GameObject on a specific Project
Resolution Note (fix version 2023.2.0b10):
Fixed UUM-40352 @laila-chammaa:
UI Toolkit: Fixed ScrollView produces jittery animation when playing PostPointerUpAnimation.