このページを含むバージョン:
このページを含まないバージョン:
2 つの回転 a と b 間の角度を返します。
a
b
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Transform target; void Update() { float angle = Quaternion.Angle(transform.rotation, target.rotation); } }