diff options
author | nathan <nathansmith@disroot.org> | 2025-08-04 07:30:27 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-08-04 07:30:27 +0000 |
commit | 6c6b8982ca4f1b29ecd0fd37beb6238315e36f10 (patch) | |
tree | 1180d3a731bbe5fb2b4926a90dbdfdf0334595a3 /src/entity.c | |
parent | 5a689b3db1e84cc8a6aac337ec5d8544c7e9c40e (diff) | |
download | FindThings-6c6b8982ca4f1b29ecd0fd37beb6238315e36f10.tar.gz FindThings-6c6b8982ca4f1b29ecd0fd37beb6238315e36f10.tar.bz2 FindThings-6c6b8982ca4f1b29ecd0fd37beb6238315e36f10.zip |
Even better pond (:
Diffstat (limited to 'src/entity.c')
-rw-r--r-- | src/entity.c | 3 |
1 files changed, 1 insertions, 2 deletions
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: |