Structure describing the status of a finger touching the screen.
Devices can track a number of different pieces of data about a touch on a touchscreen, including its phase
(ie, whether it has just started, ended or moved), its position and whether the touch was a single contact or several taps. Furthermore, the continuity of a touch between frame updates can be detected by the device, so a consistent ID number can be reported across frames and used to determine how a particular finger is moving.
deltaPosition | The position delta since last change. |
deltaTime | Amount of time that has passed since the last recorded change in Touch values. |
fingerId | The unique index for the touch. |
phase | Describes the phase of the touch. |
position | The position of the touch in pixel coordinates. |
tapCount | Number of taps. |