public static Quaternion AngleAxis (float angle, Vector3 axis);

Descripción

Crea una rotación que gira angle grados alrededor del axis.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Sets the transforms rotation to rotate 30 degrees around the y-axis transform.rotation = Quaternion.AngleAxis(30, Vector3.up); } }