Multi touch gestures on Window touch screens?

Hi I am developing a simple application where I need the two finger pinch gesture to be recognized on a all-in-one windows touch screen. I’m am not sure how to approach this on a windows operating system. I am also having a difficult time finding multitouch documentations for window projects in unity. im trying to use the get touch function but it’s not picking up the second touch. Does anyone out there have any experience with multi touch on windows touch screens?

Thank you for your time!

I have never had any issues with the default touch manager on windows devices. If you inspect Input.touchCount when you have 2 fingers down are you even seeing the second touch?

Unity does not have multi touch handling persay. You are given an array of touch data at each frame. Processing and acting on that data is your responsibility.