包含此页的版本:
不含此页的版本:
设置或检索该陀螺仪的启用状态。
using UnityEngine;public class Example : MonoBehaviour { bool enableTilt; void OnGUI() { if (Input.gyro.enabled) { GUILayout.Toggle(enableTilt, "Enable tilt control"); } // Other GUI elements... } }