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.InverseTransformDirection 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.InverseTransformPoint 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.InverseTransformVector 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.TransformDirection 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.TransformPoint 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.TransformVector 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