btschumy
What is the recommended way to detect double clicks (or taps) in the ViewPort? Currently I’m detecting touch begin, moved and ended like this (sorry, this is in C#)
Input.TouchBegin += OnTouchBegan;
Input.TouchMove += OnTouchMoved;
Input.TouchEnd += OnTouchEnded;
Do I have roll my own looking at the time of the TouchBegan events?