38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using System.Collections;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Michsky.MUIP
|
|
{
|
|
[ExecuteInEditMode]
|
|
[DisallowMultipleComponent]
|
|
[AddComponentMenu("Modern UI Pack/Layout/Layout Group Fix")]
|
|
public class LayoutGroupFix : MonoBehaviour
|
|
{
|
|
[SerializeField] private bool fixOnEnable = true;
|
|
[SerializeField] private bool fixWithDelay = true;
|
|
float fixDelay = 0.025f;
|
|
|
|
void OnEnable()
|
|
{
|
|
#if UNITY_EDITOR
|
|
LayoutRebuilder.ForceRebuildLayoutImmediate(GetComponent<RectTransform>());
|
|
if (Application.isPlaying == false) { return; }
|
|
#endif
|
|
if (fixWithDelay == false && fixOnEnable == true) { LayoutRebuilder.ForceRebuildLayoutImmediate(GetComponent<RectTransform>()); }
|
|
else if (fixWithDelay == true) { StartCoroutine(FixDelay()); }
|
|
}
|
|
|
|
public void FixLayout()
|
|
{
|
|
if (fixWithDelay == false) { LayoutRebuilder.ForceRebuildLayoutImmediate(GetComponent<RectTransform>()); }
|
|
else { StartCoroutine(FixDelay()); }
|
|
}
|
|
|
|
IEnumerator FixDelay()
|
|
{
|
|
yield return new WaitForSecondsRealtime(fixDelay);
|
|
LayoutRebuilder.ForceRebuildLayoutImmediate(GetComponent<RectTransform>());
|
|
}
|
|
}
|
|
} |