First off, I do already have this working, but starting to think I did it the long way. I'm currently tracking the start and end coordinates of a swipe, compare it to the coordinates of my grid rows and determine what direction the swipe is.
After some looking around at behaviors, I noticed tile movement and was wondering if I should have been using that all along or if there is even another easier way to do this.
In my project, I have a four by four tile grid and when I touch a tile piece, and swipe (up, down, left, right only, not 8 direction) I want the touched tile to move onto the next tile in that direction.
What is the cleanest, least amount of conditions, easiest way to do this?
Thanks!