Unity ContentSizeFitter 手动刷新
Posted 3dunity
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity ContentSizeFitter 手动刷新相关的知识,希望对你有一定的参考价值。
public void RefreshContentSizeFitter()
{
ContentSizeFitter[] csfs = itemRoot.GetComponentsInChildren<ContentSizeFitter>();
foreach (var item in csfs)
{
LayoutRebuilder.ForceRebuildLayoutImmediate(item.GetComponent<RectTransform>());
}
}
以上是关于Unity ContentSizeFitter 手动刷新的主要内容,如果未能解决你的问题,请参考以下文章
unity中ContentSizeFitter刷新不及时的问题
Unity3d中UGUI组件精简复盘(十九)ContentSizeFitter组件
Unity3d中UGUI组件精简复盘(十九)ContentSizeFitter组件
Unity3d中UGUI组件精简复盘(二十)EventSystem组件与Standalone Input Moudle组件