diff options
| author | nathan <nathansmith@disroot.org> | 2025-10-12 07:04:19 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-10-12 07:04:19 +0000 |
| commit | 3b8089936bf55c8ca62e80f66f9a413a39177995 (patch) | |
| tree | 52692e8e9fce21c5bb0ea8221245c2f86149d530 | |
| parent | 813ad580017878eca13b2f20d9f71b2e7b67b207 (diff) | |
| download | FindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.tar.gz FindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.tar.bz2 FindThings-3b8089936bf55c8ca62e80f66f9a413a39177995.zip | |
Adding item list
| -rw-r--r-- | design.org | 17 | ||||
| -rw-r--r-- | src/world.c | 6 | ||||
| -rw-r--r-- | src/world.h | 2 |
3 files changed, 21 insertions, 4 deletions
@@ -74,6 +74,23 @@ said you will have your neck snapped no matter what you do. 19. Laptop running Haiku OS. 20. Nuclear Ninja Tortoise. +* Rest of the items [2/3] ++ [X] Old mint. ++ [X] Sticky nickel. ++ [ ] Bent screw ++ [ ] Left handed screw driver. ++ [ ] Foam cup. ++ [ ] Plastic cup. ++ [ ] Receipt. ++ [ ] Used tea bag. ++ [ ] ABC gum. ++ [ ] bullet shell. ++ [ ] Lighter (out of lighter fluid). ++ [ ] Emergency radio. ++ [ ] Calculator. ++ [ ] Copy of /The Winston Niles Rumfoord Pocket History of Mars/. ++ [ ] Rotten eye ball. + * Design and programming + It will have a open world making heavy use of height maps. + No real physics, just dummy physics. diff --git a/src/world.c b/src/world.c index 42e3488..6901afe 100644 --- a/src/world.c +++ b/src/world.c @@ -720,9 +720,9 @@ Seed generateWorldCharacters(World* world, Seed seed, WorldUID start) { WorldUID index = start; - Entity ron = createEntity(RON, Vector3Scale(world->size, 0.5)); - placeEntityOnGround(&ron, world); - world->entities[index] = ron; + /* Entity ron = createEntity(RON, Vector3Scale(world->size, 0.5)); */ + /* placeEntityOnGround(&ron, world); */ + /* world->entities[index] = ron; */ return seed; } diff --git a/src/world.h b/src/world.h index 93bcb38..456d68a 100644 --- a/src/world.h +++ b/src/world.h @@ -32,7 +32,7 @@ #define PLACE_POND_WALKING_AREA 7 // Characters. -#define WORLD_CHARACTER_COUNT 1 +#define WORLD_CHARACTER_COUNT 0 #define SAMANTHA_OFFSET (Vector3){0.0, 0.0, 2.0} #define SAMANTHAS_SPOT_TRASHCAN_COUNT 5 |
