이 페이지가 있는 버전:
이 페이지가 없는 버전:
Creates a rotation which rotates angle degrees around axis.
angle
axis
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { transform.rotation = Quaternion.AngleAxis(30, Vector3.up); } }