From 39a3b8dbf54f34d4851187c0f6239bfc80c5a0d4 Mon Sep 17 00:00:00 2001 From: hugoymh <34024260+hugoymh@users.noreply.github.com> Date: Sat, 29 Mar 2025 23:10:05 +0800 Subject: [PATCH] force ScrollRect.content setup (#485) --- Runtime/Scripts/Layout/ScrollSnapBase.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Runtime/Scripts/Layout/ScrollSnapBase.cs b/Runtime/Scripts/Layout/ScrollSnapBase.cs index d200bef..bca4aa1 100644 --- a/Runtime/Scripts/Layout/ScrollSnapBase.cs +++ b/Runtime/Scripts/Layout/ScrollSnapBase.cs @@ -189,6 +189,11 @@ namespace UnityEngine.UI.Extensions _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(); if (NextButton)