This version of Unity is unsupported.

Quaternion.Inverse

Switch to Manual

Declaration

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); } }