I am making a 2d side scrolling pixel art game. For that I made a 3 frame image animation of an action done by the player.
The problem is that the first image lasts for 5 frames then the next frame lasts for 5 frames but the third frame lasts for 12 frames.
NB- I have kept the loop off because the action must not be repeated. I have tried deleting the animation and making it again but it results same.
Pls help.
I found it. The problem was i made the animation in such a way that it changes to the next state with animation. So it has no need of transition. So i just changed the transition duration to 0. The animation itself had no problems. Transition was the problem.