There! you can now reset your campaign WITHOUT worrying about deleting everything else

This commit is contained in:
JHDev2006
2025-09-25 17:08:52 +01:00
parent 402440853b
commit caff518d5d
7 changed files with 109 additions and 36 deletions

View File

@@ -105,7 +105,6 @@ func ground_acceleration(delta: float) -> void:
target_accel = player.RUN_SKID
else:
target_accel = player.WALK_SKID
player.velocity.x = move_toward(player.velocity.x, target_move_speed * player.input_direction, (target_accel / delta) * delta)
func deceleration(delta: float) -> void: