Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

Quaternion.Inverse

public static Quaternion Inverse(Quaternion rotation);

Description

Returns the Inverse of rotation.

using UnityEngine;

public class Example : MonoBehaviour { // Sets this transform to have the opposite rotation of the target

Transform target; void Update() { transform.rotation = Quaternion.Inverse(target.rotation); } }

Did you find this page useful? Please give it a rating: