From 2e3b0eefc942bbf720baa153286141b7039f291b Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 8 Jul 2025 17:43:00 -0600 Subject: Still sucks too much --- src/player.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/player.c') diff --git a/src/player.c b/src/player.c index 9c66627..f6fdb7a 100644 --- a/src/player.c +++ b/src/player.c @@ -71,7 +71,7 @@ void updatePlayer(Player* player, Game* game) player->velocity.x += -sinf(cameraAngle->x + (PI / 2.0)); } - player->velocity = Vector3Scale(player->velocity, 10.0); + player->velocity = Vector3Scale(player->velocity, 20.0); // Apply velocity. player->position = Vector3Add( -- cgit v1.2.3