Adjust camera position

This commit is contained in:
Bill Rossi 2025-03-09 09:48:45 -04:00
parent cb9c9d13a4
commit 499f7871c7

View File

@ -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;
}
}