Use the picture of a plane
This commit is contained in:
parent
5219c1ac53
commit
2a806f515b
15
player.c
15
player.c
@ -18,6 +18,9 @@ void initialize_player(Player *p) {
|
||||
p->acceleration = (Vector2) { 0, 0 };
|
||||
p->pitch = PITCH_NEUTRAL;
|
||||
p->roll = ROLL_NEUTRAL;
|
||||
Image sprite_img = LoadImage("img/player.png");
|
||||
p->spritesheet = LoadTextureFromImage(sprite_img);
|
||||
UnloadImage(sprite_img);
|
||||
}
|
||||
|
||||
void handle_player_input(Player *p) {
|
||||
@ -31,17 +34,7 @@ void handle_player_input(Player *p) {
|
||||
}
|
||||
|
||||
void draw_player(Player *p) {
|
||||
Vector2 nose = { p->roll == ROLL_LEFT ? p->position.x - 50 :
|
||||
p->roll == ROLL_RIGHT ? p->position.x + 50 :
|
||||
p->position.x,
|
||||
p->pitch == PITCH_DESCENDING ? p->position.y + 20 :
|
||||
p->pitch == PITCH_ASCENDING ? p->position.y - 20 :
|
||||
p->position.y
|
||||
};
|
||||
Vector2 left_wing = { p->position.x - 100, p->position.y + 50 };
|
||||
Vector2 right_wing = { p->position.x + 100, p->position.y + 50 };
|
||||
|
||||
DrawTriangle(nose, left_wing, right_wing, DARKGRAY);
|
||||
DrawTextureRec(p->spritesheet, (Rectangle) { 128, 128, 128, 128 }, p->position, WHITE);
|
||||
}
|
||||
|
||||
void move_player(Player *p) {
|
||||
|
Loading…
Reference in New Issue
Block a user