Hi There,
On Monogame 3.7, I try to get the gesture working on Android and it seems I don’t get any kind of gesture data. The regular touches are working fine and I also EnabledGestures. Here’s the sample code :
//Enable DragComplete Gesture
TouchPanel.EnabledGestures = GestureType.DragComplete;
while (TouchPanel.IsGestureAvailable)
{
GestureSample MyGesture = TouchPanel.ReadGesture();
if (MyGesture.GestureType == GestureType.DragComplete)
{
rightStickState = new Vector2(MyGesture.Position2.X - MyGesture.Position.X, MyGesture.Position.Y - MyGesture.Position2.Y);
rightStickState.Normalize();
}
}
is there anything else I need to enable or something?
Regards,
Özden