How to enable touching two (Sprites) at the same time?

im trying to touch both sprites at the same time.

i used this blueprint for both sprites

:

You need 2 of these:

First, Get Player Controller.
Then drag off Return Value to Get Input Touch State.

Set the Finger Index of one to Touch1. Set the other to Touch2.
Compare the the location of touch 1 to the bounds of your first sprite and touch 2 to the bounds of your 2nd sprite.

Another possibility is to use a ray trace every tick that touch happens at the touch location.
Use a gate and only let the traces go off when fingers are down.

Use the Get Input Touch State to determine Screen X and Screen Y.

Don’t put this in your sprite blueprints, put this test in your player or game mode logic.