I've noticed I can't use ++1 to increment things in Construct. How would I go about doing this? What I want is for the animation to be speeded up the faster my sprite moves for a sense of realism. Any help is appreciated.
Construct isn't C You can use a 'set to <value + 1>' type action, or just use the 'add' action for private/global variables.
Develop games in your browser. Powerful, performant & highly capable.
Try the Tutorial for basic event knowledge.
I'm messing around with a private variable now. What do you mean by the add action? Sounds promising xD
The 'Add to value' action for Private Variables
Python doesn't have ++ for some reason, you have to use += 1