使用代码更改布局组childForceExpand

时间:2015-05-15 04:32:58

标签: unity3d unityscript

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

1 个答案:

答案 0 :(得分:2)

像这样:

  using UnityEngine.UI;

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