use TouchScreenButton
if you are taking multiple touch inputs (button press).
OR
do something like this
func _input (event):
#evaluate touch 600 pixels from left side of the screen
if event.position.x > 600:
if event is InputEventScreenDrag:
#handle screen drag here
elif event is InputEventScreenTouch:
#handle touch