Enemy is a rollerskate

This commit is contained in:
Bill Rossi 2025-03-04 21:02:55 -05:00
parent d0c6b363b8
commit daf7317c08
3 changed files with 10 additions and 1 deletions

11
enemy.c
View File

@ -14,7 +14,15 @@
#include "enemy.h" #include "enemy.h"
#include "entity.h" #include "entity.h"
Texture2D *enemy_sprite = NULL;
Entity *spawn_enemy(void) { Entity *spawn_enemy(void) {
if (enemy_sprite == NULL) {
enemy_sprite = malloc(sizeof(Texture2D));
Image sprite_img = LoadImage("img/enemy.png");
*enemy_sprite = LoadTextureFromImage(sprite_img);
UnloadImage(sprite_img);
}
Entity *e = malloc(sizeof(Entity)); Entity *e = malloc(sizeof(Entity));
e->name = "Enemy"; e->name = "Enemy";
e->properties = malloc(sizeof(Entity)); e->properties = malloc(sizeof(Entity));
@ -35,7 +43,8 @@ Entity *spawn_enemy(void) {
void draw_enemy(Entity *e) { void draw_enemy(Entity *e) {
EnemyProperties *props = e->properties; EnemyProperties *props = e->properties;
DrawRectangleRec(props->position, RED); // DrawRectangleRec(props->position, RED);
DrawTextureRec(*enemy_sprite, (Rectangle) { props->velocity.x > 0 ? 32 : 0, 0, 32, 32 }, (Vector2) { props->position.x, props->position.y }, WHITE);
} }
void update_position_enemy(Entity *e, float dt) { void update_position_enemy(Entity *e, float dt) {

BIN
img/enemy.aseprite Normal file

Binary file not shown.

BIN
img/enemy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 793 B