Inverse
Returns the Inverse of rotation.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
Inverse(Quaternion)
Returns the Inverse of .
rotationpublic static Quaternion Inverse(Quaternion rotation)
Parameters
Returns
Type | Description |
|---|---|
| Quaternion |
Examples
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); }}
Inverse(Quaternion)
Returns the Inverse of .
rotationpublic static Quaternion Inverse(in Quaternion rotation)
Parameters
Returns
Type | Description |
|---|---|
| Quaternion |
Examples
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); }}