其他分享
首页 > 其他分享> > unity 设置UI宽高

unity 设置UI宽高

作者:互联网

//获取UI宽高(只读)
float width = rtf.rect.width;
float height = rtf.rect.height;

    **////设置UI宽度
    //rtf.SetSizeWithCurrentAnchors(RectTransform.Axis.Horizontal, 100);
    ////设置UI高度
    //rtf.SetSizeWithCurrentAnchors(RectTransform.Axis.Vertical, 100);**

    **//rtf.sizeDelta = new Vector2(100, 100);
    //当前物体大小 -  锚点大小
    //如果锚点不分开,结果是物体大小
    size = rtf.sizeDelta;**

标签:rtf,float,宽高,height,unity,UI,100,sizeDelta
来源: https://blog.csdn.net/weixin_42116703/article/details/86560757