Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


CalculateRelativeRectTransformBounds

Creates a Bounds object that encapsulates all the child RectTransform objects found in the child parameter, and converts the resulting bounds into local space relative to the root transform.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.UIModule

CalculateRelativeRectTransformBounds(Transform, Transform)

Creates a Bounds object that encapsulates all the child RectTransform objects found in the
child
parameter, and converts the resulting bounds into local space relative to the
root
transform.
public static Bounds CalculateRelativeRectTransformBounds(Transform root, Transform child)

Parameters

The Transform to use when converting from world to local space.

The parent Transform object whose RectTransform children will be encapsulated.

Returns

Type

Description

BoundsA Bounds object representing the encapsulated bounds in local space relative to the root Transform.

CalculateRelativeRectTransformBounds(Transform)

Creates a Bounds object that encapsulates all the child RectTransform objects found in the
child
parameter, and converts the resulting bounds into local space relative to the
root
transform.
public static Bounds CalculateRelativeRectTransformBounds(Transform trans)

Parameters

The Transform to both search for RectTransform children and convert into world to local space.

Returns

Type

Description

BoundsA Bounds object representing the encapsulated bounds in local space relative to the root Transform.