I am trying to make a plataform game and I want that my chracter start ti run when I press shift+direction, but when I do, the animation only changes to the first sprite. What am I doing wrong?
If you want it run endless, you need to add a variable like gameState = 0.
When you press key, change it to gameState = 1.
Condition : gameState = 1
Action : Player : Simulate Control -> Moving Right
Cheers
you can find your answer here plus more
cgpatel.co.uk
Another question, I was supposed to send an image of my event sheet here in the forum but I couldn't. [4172]
After you upload it, use "img" tag:
[img=4172]
Here is your image:
Develop games in your browser. Powerful, performant & highly capable.
OH, thanks ;-;
If you want it run endless, you need to add a variable like gameState = 0. When you press key, change it to gameState = 1. Condition : gameState = 1 Action : Player : Simulate Control -> Moving Right Cheers
I did not understand.