包含此页的版本:
不含此页的版本:
返回 rotation 的反转。
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); } }