标签: unity3d unityscript
我只是想知道如何使用代码访问布局组的childForceExpand。我将垂直布局组附加到实例化的面板,并希望关闭力展开。
childForceExpand
答案 0 :(得分:2)
using UnityEngine.UI; VerticalLayoutGroup grp = GetComponent<VerticalLayoutGroup>(); grp.childForceExpandHeight = true; grp.childForceExpandWidth = false;