There isn't any built-in swipe action, but you can make it manually, in a couple of minutes!
There could be various factors you'll need to consider: e.g. is it touch and swipe, is it hold-already and swipe, how far to swipe, speed of swipe.
How I do it is simple. The logic is:
- On Any Touch Start: Create four invisible objects (squares)
- Set Position for each top, bottom, left and right (e.g. Touch.X + 150, Touch.Y + 150, etc.)
- Is Touching Right and Trigger Once: Swipe right actions/function (do this for each object)
- On Any Touch End: Destroy all four objects
It's quite quick and easy, plus it gives you enough control on how much to swipe (by setting a good distance between the object and Touch start).