diff options
author | nathan <nathansmith@disroot.org> | 2025-07-08 23:43:00 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-07-08 23:43:00 +0000 |
commit | 2e3b0eefc942bbf720baa153286141b7039f291b (patch) | |
tree | 46afe2111358cf4154105b4faa085bf253c825a1 /src/player.c | |
parent | f3a07a4e98444c7d98df8b3f3b57e2136477f87f (diff) | |
download | FindThings-2e3b0eefc942bbf720baa153286141b7039f291b.tar.gz FindThings-2e3b0eefc942bbf720baa153286141b7039f291b.tar.bz2 FindThings-2e3b0eefc942bbf720baa153286141b7039f291b.zip |
Still sucks too much
Diffstat (limited to 'src/player.c')
-rw-r--r-- | src/player.c | 2 |
1 files changed, 1 insertions, 1 deletions
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( |