Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


InverseTransformVector

Transforms a vector from world space to local space. The opposite of Transform.TransformVector.
Read time 1 minuteLast updated 8 days ago

Definition

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

InverseTransformVector(Vector3)

Transforms a vector from world space to local space. The opposite of Transform.TransformVector.
public Vector3 InverseTransformVector(Vector3 vector)

Parameters

vector

Returns

Type

Description

Vector3

Remarks

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.

InverseTransformVector(float, float, float)

Transforms the vector x, y, z from world space to local space. The opposite of Transform.TransformVector.
public Vector3 InverseTransformVector(float x, float y, float z)

Parameters

Returns

Type

Description

Vector3

Remarks

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.