Hi, one question for the airFriction. If i increase the number or lover the number nothing changes. How could i change the air movement speed of the player? Thank you in advance.
Viewing post in Godot Platformer Template comments
Holy, your completely right I cant believe I didn't catch that. I've updated the files in the GitHub and itch, but if you don't wanna go through the hassle of re downloading it just swap out this line in the move horizontally function:
"currentSpeed = move_toward(currentSpeed, maxSpeed , acceleration"
to this
"currentSpeed = move_toward(currentSpeed, maxSpeed - airFriction, acceleration)"