summaryrefslogtreecommitdiff
path: root/Thronefall_1_0/GameCode/UIParentResizer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_0/GameCode/UIParentResizer.cs')
-rw-r--r--Thronefall_1_0/GameCode/UIParentResizer.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/Thronefall_1_0/GameCode/UIParentResizer.cs b/Thronefall_1_0/GameCode/UIParentResizer.cs
deleted file mode 100644
index 4044a15..0000000
--- a/Thronefall_1_0/GameCode/UIParentResizer.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-using System.Collections.Generic;
-using UnityEngine;
-using UnityEngine.UI;
-
-public class UIParentResizer : MonoBehaviour
-{
- public enum Mode
- {
- Vertical
- }
-
- public Mode mode;
-
- public float minHeight;
-
- public float padding = 30f;
-
- public List<RectTransform> observedElements;
-
- private RectTransform ownRT;
-
- public void Trigger()
- {
- if (ownRT == null)
- {
- ownRT = GetComponent<RectTransform>();
- }
- float num = 0f;
- foreach (RectTransform observedElement in observedElements)
- {
- LayoutRebuilder.ForceRebuildLayoutImmediate(observedElement);
- num += observedElement.sizeDelta.y;
- }
- if (num < minHeight)
- {
- num = minHeight;
- }
- ownRT.sizeDelta = new Vector2(ownRT.sizeDelta.x, num + 2f * padding);
- }
-}