updateInterval
Sets or retrieves gyroscope interval in seconds.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.InputLegacyModule
public float updateInterval { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { Input.gyro.updateInterval = 0.01f; }}