From 5925230971875ba3e6e591f0655cf84b739b50fc Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 25 Oct 2025 18:10:58 -0600 Subject: New entity system is working (: --- src/entities/flower.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/entities/flower.c') diff --git a/src/entities/flower.c b/src/entities/flower.c index 00f27fc..89378bb 100644 --- a/src/entities/flower.c +++ b/src/entities/flower.c @@ -2,11 +2,11 @@ void initFlower(Entity* entity) { - entity->box = entityBoxFromScale(1.0, FLOWER_WIDTH, FLOWER_HEIGHT); + entity->box = entityBoxFromScale(FLOWER_SCALE, FLOWER_WIDTH, FLOWER_HEIGHT); } void updateFlower(Entity* entity, Game* game) { DrawBillboard(game->player.camera, game->assets.textures[FLOWER_TEXTURE], - entity->position, 1.0, WHITE); + entity->position, FLOWER_SCALE, WHITE); } -- cgit v1.2.3