I have two animation frames that I want to play during a certain event. Every time the player hits the space key I just want it too cycle to the next animation in the set, and repeat that. Any ideas?
Develop games in your browser. Powerful, performant & highly capable.
You could use a global variable.
Something like this:
gvAnim=0
On space pressed:
gvAnim=0: play first animation
>else :play second animation
Happy constructing....