Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Our educational partners
Free education resources to use in the classroom
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
Hello,
I am not using default controls with the TileMovement behavior. The simulate control up, down, left and right are great but I would need the sprite to move based on it's current direction - meaning forward.
Is there something along the lines TileMovement can move 1 cell forward?
Develop games in your browser. Powerful, performant & highly capable.
You could store the direction in a variable each time you change it. 0= right, 1= down, 2=left, 3=up
You would then compare that variable to make it go in that direction.
Took a few additional condition but this did the trick. Thank you :)