Camera won't escape the horiz bounds
This commit is contained in:
parent
98ed7634d4
commit
471aed47fb
1
level.c
1
level.c
@ -20,6 +20,7 @@ void draw_tile(Level *l, int x, int y) {
|
||||
}
|
||||
|
||||
void draw_level(Level *l) {
|
||||
Camera2D *camera = l->game->camera;
|
||||
for (int i = 0; i < l->width; i++) {
|
||||
for (int j = 0; j < l->length; j++) {
|
||||
draw_tile(l, i, j);
|
||||
|
13
player.c
13
player.c
@ -62,6 +62,15 @@ void move_player(Player *p) {
|
||||
p->position.y += p->velocity.y;
|
||||
|
||||
p->game->camera->target = p->position;
|
||||
p->game->camera->offset.x = 400;
|
||||
p->game->camera->offset.y = 275;
|
||||
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;
|
||||
if (too_far_left) {
|
||||
p->game->camera->offset.x = p->position.x;
|
||||
} else if (too_far_right) {
|
||||
p->game->camera->offset.x = p->position.x - 800;
|
||||
} else {
|
||||
p->game->camera->offset.x = 400;
|
||||
p->game->camera->offset.y = 275;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user