このページを含むバージョン:
このページを含まないバージョン:
2 つの回転の内積を返します。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(Quaternion.Dot(transform.rotation, Quaternion.identity)); } }