Draw player image with sprite offset
This commit is contained in:
parent
2a806f515b
commit
d0c6b363b8
2
player.c
2
player.c
@ -34,7 +34,7 @@ void handle_player_input(Player *p) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void draw_player(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) {
|
void move_player(Player *p) {
|
||||||
|
Loading…
Reference in New Issue
Block a user