From ee99803521199ceff694d99e2c6e792afa7fb241 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Sat, 8 Mar 2025 19:50:12 +0100 Subject: [PATCH] faster player --- src/player.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.rs b/src/player.rs index 90b0252..476e837 100644 --- a/src/player.rs +++ b/src/player.rs @@ -187,7 +187,7 @@ fn apply_controls( controller.basis(TnuaBuiltinWalk { // The `desired_velocity` determines how the character will move. - desired_velocity: direction.normalize_or_zero() * 8.0, + desired_velocity: direction.normalize_or_zero() * 10.0, // The `float_height` must be greater (even if by little) from the distance between the // character's center and the lowest point of its collider. float_height: 3.0,