Hi, I’m using the following code to detect touches
[RequireComponent(typeof(CanvasRenderer))]
public sealed class PointerDragListener : Graphic, IBeginDragHandler...
{
...
public void OnBeginDrag(PointerEventData eventData)
{
...
}
...
}
When I press 2 touches simultaniously, it works OK, but when I press 3 touches simultaneously, none gets registered. I’ve turned AndroidFilterTouchesWhenObscured off. My phone is a Xiaomi Redmi, and 3-fingers-swipe-down just happens to be a shortcut for screenshot. is that the OS filtering the touch? am i doing it wrong?
thanks