Input.GetTouch(0).position.x and TouchPhase.Began

Hey guys,
Is it necessary to insert …== TouchPhase.Began after Input.GetTouch(0).position.x ?
Because they both seem to do the same stuff :

if(touch.position.x < Screen.width/2)
{ 
      //DO STUFF
}

VS

if(touch.position.x < Screen.width/2)
{ 
   if(touch.phase == TouchPhase.Began)
        //DO STUFF
}

Depends on what you would like to achieve. TouchPhase.Began will be true in one single frame if you toch the screen. For example if you would like to make something like that cookie making game and you want something do only once when the player taps the screen you put that in. If you would like a character to follow your finger without constantly need to tap the screen you dont put that in :slight_smile: