このページを含むバージョン:
このページを含まないバージョン:
ジャイロスコープの状態を設定・取得します
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public bool enableTilt; void OnGUI() { if (Input.gyro.enabled) GUILayout.Toggle(enableTilt, "Enable tilt control"); } }