Sets or retrieves gyroscope interval in seconds.
function Start () { Input.gyro.updateInterval = 0.01; }
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Start() { Input.gyro.updateInterval = 0.01F; } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Start() as void: Input.gyro.updateInterval = 0.01F