使用代码更改布局组 childForceExpand

Changing layout group childForceExpand with code

我只是想知道如何使用代码访问布局组的 childForceExpand。我将垂直布局组附加到实例化面板,并想关闭强制展开。

像这样:

  using UnityEngine.UI;

  VerticalLayoutGroup grp = GetComponent<VerticalLayoutGroup>();
  grp.childForceExpandHeight = true;
  grp.childForceExpandWidth = false;