Version: 2019.4
LanguageEnglish
  • C#

Input.gyro

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static Gyroscope gyro;

Description

Returns default gyroscope.

Use this to return the gyroscope details of your device. Ensure first that your device has a gyroscope. Use Input.gyro.enabled to check this.

Knowing the gyroscope details of a device enables you the ability to include features that need to know a device’s orientation. Common uses include changing camera angles or GameObject’s positions when a user rotates and moves their device.

//Attach this script to a GameObject in your Scene.
using UnityEngine;
using UnityEngine.UI;

public class InputGyroExample : MonoBehaviour { Gyroscope m_Gyro;

void Start() { //Set up and enable the gyroscope (check your device has one) m_Gyro = Input.gyro; m_Gyro.enabled = true; }

//This is a legacy function, check out the UI section for other ways to create your UI void OnGUI() { //Output the rotation rate, attitude and the enabled state of the gyroscope as a Label GUI.Label(new Rect(500, 300, 200, 40), "Gyro rotation rate " + m_Gyro.rotationRate); GUI.Label(new Rect(500, 350, 200, 40), "Gyro attitude" + m_Gyro.attitude); GUI.Label(new Rect(500, 400, 200, 40), "Gyro enabled : " + m_Gyro.enabled); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961