Draw player image with sprite offset

This commit is contained in:
Bill Rossi 2025-03-04 20:49:52 -05:00
parent 2a806f515b
commit d0c6b363b8

View File

@ -34,7 +34,7 @@ void handle_player_input(Player *p) {
}
void draw_player(Player *p) {
DrawTextureRec(p->spritesheet, (Rectangle) { 128, 128, 128, 128 }, p->position, WHITE);
DrawTextureRec(p->spritesheet, (Rectangle) { 128, 128, 128, 128 }, (Vector2) { p->position.x - 64, p->position.y - 29 }, WHITE);
}
void move_player(Player *p) {