deltaTime
Amount of time that has passed since the last recorded change in Touch values.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.InputLegacyModule
public float deltaTime { get; set; }
Remarks
Values for the various touch properties are updated periodically. The deltaTime value is simply the amount of time that elapsed between the previous update and the current one. This is primarily useful for determining the movement speed of the touch position with reference to Touch.deltaPosition.
Additional Resources: deltaPosition.