Imerion Is there a way to count how many touch events are registered? I tried using "InputEvent.SCREEN_TOUCH" but I'm not sure how to use it to simply get how many touch events are registered. (For example, if I want to know how many fingers a user is holding on the screen.)
Imerion After lots of looking and testing I managed to fix this myself. I did this: func _input(event): if (event.type == InputEvent.SCREEN_TOUCH): for getTouch in range(event.index): #Here, getTouch will provide the amount of fingers touching the screen.
Imerion Actually it's simply possible to do this: func _input(event): if (event.type == InputEvent.SCREEN_TOUCH): numberOfTouches=event.index