Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Quaternion.identity

Cambiar al Manual
public static Quaternion identity;

Descripción

The identity rotation (Read Only).

This quaternion corresponds to "no rotation" - the object is perfectly aligned with the world or parent axes.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { transform.rotation = Quaternion.identity; } }