发布时间:2024-09-27 10:01
GetComponent
那么,要重新设置UI界面的RectTransform中的长和宽,我们可以使用GetComponent
GetComponent
GetComponent
().offsetMin = new Vector2(left, bottom);
- offsetMin.x:为RectTransform中的Left,即offsetMin.x = left;
- offsetMin.y:为RectTransform中的Buttom,即offsetMin.y = bottom。
若获取Left、Bottom的值:
- float left = GetComponent
().offsetMin.x ;- float bottom = GetComponent
().offsetMin.y ;
GetComponent
().offsetMax = new Vector2(right, top);
- offsetMax.x:为RectTransform中的Right,即offsetMax.x = -right;
- offsetMax.y:为RectTransform中的Top,即offsetMax.y = -top。
若获取Right、Top的值:
- float right = -GetComponent
().offsetMax.x ;- float top = -GetComponent
().offsetMax.y ;
(1) anchoredPosition3D,修改Pos
GetComponent
(2) anchoredPosition,修改Pivot
GetComponent