source | Indicates which input medium triggered this event. |
tapCount | The count of taps (1 for single tap, 2 for double tap). |
headRay | Ray (with normalized direction) from user at the time this event interaction began. |
Callback indicating a tap event.
Users should register with TappedEvent. If only one of GestureSettings.Tap or GestureSettings.DoubleTap is set, then tapCount is reported as 1 or 2 respectively. If both GestureSettings.Tap and GestureSettings.DoubleTap are set, then two tapCounts are reported successively. For example, if you enable both taps on the same GestureRecognizer and tap twice, then two events are generated, the first with tapCount = 1 and the second with tapCount = 2.