How do you implement touch pinch events in Blueprint?

I was unable to find related answers, how would you implement multiple fingers on a touch screen, specifically for registering a pinch gesture on mobile, using blueprints?

A question I asked a while ago but nobody ever replied

I imagine you can do it through logic in blueprints but I was never able to get it to completly work. I might eventually create it in c++ but blueprints should be able to do this easier.

Yeah I’m trying to solve this using blueprints. I do not fully understand Finger Index yet but if each finger touching is assigned to an individual Finger Index, this becomes very simple. I should probably test this theory since there doesn’t seem to be any information on multiple touch inputs.

Yea I was able to get things to sorta work through some complicated blueprints but it is so buggy. You can do it with blueprints, there are several nodes you can use to interface with touchscreen.(I used GetInputTouchState) then I found out the distance using the distance formula between the location of two touches , multiplied it accordingly, inverted it, then the rest is broken but I added it to the current z axis of the camera or pawn. I will try to post a complete solution when I get somthing that works correctly.

Hello, could you solve this? :frowning: