Space Switching

Inverse Transform Direction

Transforms a direction from world space to local space. This operation is not affected by the scale or position of the transform input. For more information, refer to Transform.InverseTransformDirectionarrow-up-right in the Unity documentation.

Inputs:

Name
Type
Description

Transform In

Transform

Reference to a transform.

Vector3 In

Vector3

The direction to transform to local space.

Outputs:

Name
Type
Description

Vector3 Out

Vector3

The transformed direction.

Inverse Transform Point

Transforms a position from world space to local space. This operation is affected by the scale of the transform input. For more information, refer to Transform.InverseTransformPointarrow-up-right in the Unity documentation.

Inputs:

Name
Type
Description

Transform In

Transform

Reference to a transform.

Vector3 In

Vector3

The point to transform to local space.

Outputs:

Name
Type
Description

Vector3 Out

Vector3

The transformed point.

Inverse Transform Vector

Transforms a vector from world space to local space. This operation is affected by the scale of the transform input. For more information, refer to Transform.InverseTransformVectorarrow-up-right in the Unity documentation.

Inputs:

Name
Type
Description

Transform In

Transform

Reference to a transform.

Vector3 In

Vector3

The vector to transform to local space.

Outputs:

Name
Type
Description

Vector3 Out

Vector3

The transformed vector.

Transform Direction

Transforms a direction from local space to world space. This operation is not affected by the scale or position of the transform input. For more information, refer to Transform.TransformDirectionarrow-up-right in the Unity documentation.

Inputs:

Name
Type
Description

Transform In

Transform

Reference to a transform.

Vector3 In

Vector3

The direction to transform to world space.

Outputs:

Name
Type
Description

Vector3 Out

Vector3

The transformed direction.

Transform Point

Transforms a position from local space to world space. This operation is affected by the scale of the transform input. For more information, refer to Transform.TransformPointarrow-up-right in the Unity documentation.

Inputs:

Name
Type
Description

Transform In

Transform

Reference to a transform.

Vector3 In

Vector3

The point to transform to world space.

Outputs:

Name
Type
Description

Vector3 Out

Vector3

The transformed point.

Transform Vector

Transforms a vector from local space to world space. This operation is affected by the scale of the transform input. For more information, refer to Transform.TransformVectorarrow-up-right in the Unity documentation.

Inputs:

Name
Type
Description

Transform In

Transform

Reference to a transform.

Vector3 In

Vector3

The vector to transform to world space.

Outputs:

Name
Type
Description

Vector3 Out

Vector3

The transformed vector.

Last updated