Version: 2017.4
public bool enabled ;

説明

ジャイロスコープの状態を設定・取得します

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public bool enableTilt; void OnGUI() { if (Input.gyro.enabled) GUILayout.Toggle(enableTilt, "Enable tilt control"); } }