force ScrollRect.content setup (#485)

development
hugoymh 2025-03-29 23:10:05 +08:00 committed by GitHub
parent b20f567a70
commit 39a3b8dbf5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -189,6 +189,11 @@ namespace UnityEngine.UI.Extensions
_screensContainer = _scroll_rect.content; _screensContainer = _scroll_rect.content;
//ScrollRect.content RT anchors has to be stretched first in order for HSS/VSS.DistributePages() to have the correct result
_screensContainer.anchorMin = Vector2.zero;
_screensContainer.anchorMax = Vector2.one;
_screensContainer.sizeDelta = Vector2.zero;
InitialiseChildObjects(); InitialiseChildObjects();
if (NextButton) if (NextButton)