Search Issue Tracker
Fixed in 5.3.0
Votes
0
Found in
3.5.6f4
Issue ID
492850
Regression
No
Shaking GUI.BeginScrollView area if viewRect < position and alwaysShowVertical = true
To reproduce:
1. Open project Unity355Test
2. Open TestScene
3. Attach MyUI script to an object
4. Run
or Drop this GUI into a scene to reproduce:
public class MyUI : MonoBehaviour {
public Vector2 scrollPosition = Vector2.zero;
void OnGUI() {
scrollPosition = GUI.BeginScrollView(
new Rect(0, 0, 200, 400),
scrollPosition,
new Rect(0, 0, 200, 300),
false,
true);
GUI.Button(new Rect(0, 0, 100, 20), "Top-left");
GUI.Button(new Rect(120, 0, 100, 20), "Top-right");
GUI.Button(new Rect(0, 180, 100, 20), "Bottom-left");
GUI.Button(new Rect(120, 180, 100, 20), "Bottom-right");
GUI.EndScrollView();
}
}
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Inconsistent behaviour when interacting with different dropdown types with pointer events on parent Visual Element
- Hidden GameObjects won't re-enable when they have call "DontDestroyOnLoad" function
- Overlay Canvas are rendered on each split-screen camera when HDR is enabled
- [Android] The Player loses focus when using UnityEngine.Handheld.StartActivityIndicator() with Facebook SDK
- Build fails with "Building Library/Bee/artifacts/MacStandalonePlayerBuildProgram/gahcy/hj9mx3z/951.0 failed with output:..." errors when Scripting Backend is set to IL2CPP
Add comment