I'm currently using the Platform Movement object to control my character
My character moves normally and I want him to start moving faster when the player holds the P key. I achieved this by doing this:
Repeat while P is pressed
Repeat while D is pressed
Set additional X velocity to 400
When wanting to go left I tried doing the same but this time I replaced D with A:
Repeat while P is pressed
Repeat while A is pressed
Set additional X velocity to 400
The problem is that when going left for some reason the additional velocity only causes my character to go right. How can have my character go left as well as right when running?