I need help with some animations that are giving me troubles.
First, I'm making a platform game (MMX). So, I have this animations (Platform behavior), Stand and Walking. I wanted to add other animation called Dashing, but it gave me troubles since there is not a status in the Sprite (with Platform behavior) called Dashing. (The problem was that it was just playing the first frame of dash animation, instead of doing the whole animation).
So I thought on doing other trick. I created another Sprite object called DashSprite, with just 1 animation (Dashing, of course). So, when the "X" key is pressed, it activates a Flag (called "IsDashing"), then I made an event: ' If IsDashing = 1, Make Invisible MainSprite, and Make Visible DashSprite '; else, ' Make Invisible DashSprite, Make Visible MainSprite '.
It just worked with an angle of 180 (left); 0� angle is not working. It's driving me nuts.
Is there another way to make the animations work well?
Please, I need help.
Thanks,
Carlos.