Versions with this page:
Versions without this page:
Returns the Inverse of rotation.
rotation
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Transform target; void Update() { transform.rotation = Quaternion.Inverse(target.rotation); } }