Hello, I've been struggling for a week trying to implement this trap system in the game. I managed to get it working to some extent, but for the past few days, I've been banging my head trying to solve this pawn animation problem, and I just can’t seem to figure it out. I think I've been spending around 3-4 hours a day on this, but without any success.
I'll give an example with the only trap I currently have. When the pawn reaches position 5, it should move back 3 tiles. (Don't associate the position with the tile number in the game; position 5 actually means tile number 4).
When the pawn lands on that tile (tile 4), it should go back to tile 1. However, instead of doing that, it continues to tile 5, then goes back to tile 4, and then to tile 3. Basically, out of the 3 moves it should make backward, one of them actually moves backward, but the other two move forward.
I should mention that the pawn’s position is correctly tracked and updated. When it reaches tile 4, the position updates to 2 (meaning tile 1), but the animation goes haywire.
I will attach images and videos, and if necessary, you can ask me for the entire code or the game itself. It doesn't matter what you need, I just want to get this resolved.