From 6c6b8982ca4f1b29ecd0fd37beb6238315e36f10 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 4 Aug 2025 01:30:27 -0600 Subject: Even better pond (: --- src/entity.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/entity.c') diff --git a/src/entity.c b/src/entity.c index 164d9f4..97af95e 100644 --- a/src/entity.c +++ b/src/entity.c @@ -74,9 +74,8 @@ void updateEntity(Entity* entity, Game* game) entity->position, FLOWER_SCALE, WHITE); break; case POND: - DrawBoundingBox(entity->box, YELLOW); DrawPlane( - Vector3Add(entity->position, (Vector3){0.0, POND_HEIGHT / 2.0, 0.0}), + Vector3Add(entity->position, (Vector3){0.0, POND_HEIGHT * 2.0, 0.0}), (Vector2){POND_SIZE * 2.5, POND_SIZE * 2.5}, BLUE); break; default: -- cgit v1.2.3