Version: 5.5
public static Quaternion Inverse (Quaternion rotation);

설명

Returns the Inverse of rotation.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform target; void Update() { transform.rotation = Quaternion.Inverse(target.rotation); } }