Unity UGUI ScrollRect滚动列表
作者:互联网
1.ScrollRect(这个尺寸在编辑器设置)
ScrollRect.GetComponent<RectTransform>().rect.height=400
ScrollRect.GetComponent<RectTransform>().rect.width=400
2.Content AddComponent Vertical Layout Group(这个尺寸在脚本动态设置,可以通过网络数据加载列表)
Content.GetComponent<RectTransform>().rect.height=Content.transofm.childCount*child.GetComponent<RectTransform>().rect.height;
3.Content AddComponent Horizontal Layout Group
Content.GetComponent<RectTransform>().rect.width=Content.transofm.childCount*child.GetComponent<RectTransform>().rect.width;
标签:ScrollRect,height,Content,width,Unity,GetComponent,UGUI,rect 来源: https://www.cnblogs.com/furuipeng/p/15024695.html