FindChildRecursive
(
parent
, name
)
|
Signature
static Transform FindChildRecursive(this Transform parent, string name) Parameters parent: this Transformname: stringReturns Transform |
FindChildRecursive
(
parent
, predicate
)
|
Signature
static Transform FindChildRecursive(this Transform parent, Predicate< Transform > predicate) Parameters parent: this Transformpredicate: Predicate< Transform >Returns Transform |
InverseTransformPointUnscaled
(
transform
, position
)
|
Transforms position from world space to local space.
Signature
static Vector3 InverseTransformPointUnscaled(this Transform transform, Vector3 position) Parameters transform: this Transformposition: Vector3Returns Vector3 |
TransformBounds
(
transform
, bounds
)
|
Transform a bounding box from local to world space.
Signature
static Bounds TransformBounds(this Transform transform, in Bounds bounds) Parameters transform: this TransformÂ
Transfrom that bounds is local to
bounds: in BoundsÂ
The bounds to transform, in local space
Returns BoundsÂ
The bounding box in world space
|
TransformPointUnscaled
(
transform
, position
)
|
Transforms position from local space to world space.
Signature
static Vector3 TransformPointUnscaled(this Transform transform, Vector3 position) Parameters transform: this Transformposition: Vector3Returns Vector3 |