diff options
author | nathan <nathansmith@disroot.org> | 2025-07-27 11:42:51 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-07-27 11:42:51 +0000 |
commit | 37e603085675aca97f94cce66fcd5d0fa3d50b1a (patch) | |
tree | ef17fc3ff2cbaf12e56ce8be8a821b0e2f92ac40 /src/entity.c | |
parent | 9b3bbf4ef7c26c1267e8ea99024d9d1acd7f1376 (diff) | |
download | FindThings-37e603085675aca97f94cce66fcd5d0fa3d50b1a.tar.gz FindThings-37e603085675aca97f94cce66fcd5d0fa3d50b1a.tar.bz2 FindThings-37e603085675aca97f94cce66fcd5d0fa3d50b1a.zip |
Skybox working
Diffstat (limited to 'src/entity.c')
-rw-r--r-- | src/entity.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entity.c b/src/entity.c index 2ad7754..6d1aace 100644 --- a/src/entity.c +++ b/src/entity.c @@ -25,10 +25,10 @@ Entity createEntity(EntityId id, Vector3 position) entity.box = entityBoxFromScale(1.0, 32.0, 32.0); break; case TREE: - entity.box = entityBoxFromScale(TREE_SCALE, 225.0, 500.0); + entity.box = entityBoxFromScale(TREE_SCALE, 113.0, 250.0); break; case BUSH: - entity.box = entityBoxFromScale(BUSH_SCALE, 174.0, 124.0); + entity.box = entityBoxFromScale(BUSH_SCALE, 87.0, 62.0); break; case FLOWER: entity.box = entityBoxFromScale(FLOWER_SCALE, 32.0, 54.0); |