Transform.InverseTransformDirectionfunction InverseTransformDirection (direction : Vector3) : Vector3DescriptionTransforms a direction from world space to local space. The opposite of Transform.TransformDirection. This operation is unaffected by scale.
JavaScript
// transform the world forward into local space: using UnityEngine; import UnityEngine function InverseTransformDirection (x : float, y : float, z : float) : Vector3DescriptionTransforms the direction x, y, z from world space to local space. The opposite of Transform.TransformDirection. This operation is unaffected by scale.
JavaScript
// transform the world forward into local space: using UnityEngine; import UnityEngine |
