public Quaternion attitude ;

Descripción

Retorna la atitude (es decir, orientación en espacio) del dispositivo.

using UnityEngine;

public class Example : MonoBehaviour { // Rotate the object to match the device's orientation // in space. void Update() { transform.rotation = Input.gyro.attitude; } }