Hi,
for registering fingers on touchscreens there are touchPhases like stationary and moved. But moved is only for moving fingers and stationary is only for fingers touching, but not moving.
I need a phase like isOnScreen, which contains moved AND stationary. Do I have to combine both like if (Input.GetTouch(0).phase == TouchPhase.Moved || Input.GetTouch(0).phase == TouchPhase.Stationary ) or is there a simpler sollution?