Version: 2023.1
LanguageEnglish
  • C#

Transform.InverseTransformVector

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual

Declaration

public Vector3 InverseTransformVector(Vector3 vector);

Description

Transforms a vector from world space to local space. The opposite of Transform.TransformVector.

This operation is not affected by position of the transform but it is affected by scale. The returned vector may have a different length than vector.

If you need to transform many vectors at once consider using Transform.InverseTransformVectors instead as it is much faster than repeatedly calling this function.

See Also:Transform.TransformVector, Transform.InverseTransformVectors, Transform.InverseTransformPoint, Transform.InverseTransformDirection.


Declaration

public Vector3 InverseTransformVector(float x, float y, float z);

Description

Transforms the vector x, y, z from world space to local space. The opposite of Transform.TransformVector.

This operation is not affected by position of the transform but it is affected by scale. The returned vector may have a different length than vector.

If you need to transform many vectors at once consider using Transform.InverseTransformVectors instead as it is much faster than repeatedly calling this function.

See Also:Transform.TransformVector, Transform.InverseTransformVectors, Transform.InverseTransformPoint, Transform.InverseTransformDirection.