From 499f7871c74bf70b4f4e2c36f04ea65ccc2797bc Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sun, 9 Mar 2025 09:48:45 -0400 Subject: [PATCH] Adjust camera position --- player.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/player.c b/player.c index 98ee806..9ef95e1 100644 --- a/player.c +++ b/player.c @@ -36,7 +36,6 @@ void handle_player_input(Player *p) { void draw_player(Player *p) { DrawTextureRec(p->spritesheet, (Rectangle) { 128, 128, 128, 128 }, (Vector2) { p->position.x - 64, p->position.y - 29 }, WHITE); - DrawRectangle(p->position.x, p->position.y, 5, 5, BLUE); } void move_player(Player *p) { @@ -63,6 +62,7 @@ void move_player(Player *p) { p->position.y += p->velocity.y; p->game->camera->target = p->position; + p->game->camera->offset.y = 400; int level_width_in_pixels = p->game->level->width * 32; bool too_far_left = p->position.x < 400; bool too_far_right = level_width_in_pixels - p->position.x < 400; @@ -72,6 +72,5 @@ void move_player(Player *p) { p->game->camera->offset.x = p->position.x - level_width_in_pixels + 800; } else { p->game->camera->offset.x = 400; - p->game->camera->offset.y = 275; } }