其他分享
首页 > 其他分享> > UGUI RectTransformUtility

UGUI RectTransformUtility

作者:互联网

RectTransformUtility:
public static Bounds CalculateRelativeRectTransformBounds (Transform root, Transform child);
public static Bounds CalculateRelativeRectTransformBounds (Transform trans) ;
计算包围盒

// 计算 child 在屏幕坐标系的包围盒
RectTransformUtility.CalculateRelativeRectTransformBounds(canvas, child);

// 计算 child 在 target 的局部坐标系的包围盒
RectTransformUtility.CalculateRelativeRectTransformBounds(target, child);

// 计算 child 在自身坐标系的包围盒
RectTransformUtility.CalculateRelativeRectTransformBounds(child);

标签:RectTransformUtility,Transform,坐标系,child,包围,UGUI,CalculateRelativeRectTransformB
来源: https://www.cnblogs.com/kingBook/p/15906849.html