From 5a689b3db1e84cc8a6aac337ec5d8544c7e9c40e Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 4 Aug 2025 00:35:17 -0600 Subject: Better area clearing for pond --- src/entity.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/entity.c') diff --git a/src/entity.c b/src/entity.c index 8225e76..164d9f4 100644 --- a/src/entity.c +++ b/src/entity.c @@ -75,6 +75,9 @@ void updateEntity(Entity* entity, Game* game) break; case POND: DrawBoundingBox(entity->box, YELLOW); + DrawPlane( + Vector3Add(entity->position, (Vector3){0.0, POND_HEIGHT / 2.0, 0.0}), + (Vector2){POND_SIZE * 2.5, POND_SIZE * 2.5}, BLUE); break; default: break; -- cgit v1.2.3