このページを含むバージョン:
このページを含まないバージョン:
axis の周りを angle 度回転する回転を作成します。
axis
angle
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { transform.rotation = Quaternion.AngleAxis(30, Vector3.up); } }