Drauma is a first person horror-thriller game with retro aesthetics and fixed 4:3 screen ratio.
The loading system was inspired by a GDC talk from the developers of Firewatch. Unfortunately the video is no longer available, but the gist of it is that the game world is divided into chunks, and only the chunks that are close to the player or visible from a distance (with LODs) are loaded into memory. This allows for a large game world to be loaded seamlessly and with no performance issues.
Implemented grid based movement, and extended Unity tilemap system to create and edit world chunks in a 3D grid.
Implemented dialoue system on top of Ink that allows for:
Designed a save system with manual and auto save functionality, using Json.NET for its powerful serialization features.
Manual saves are managed by the player, while auto saves are triggered by specific events in the game world. In case of game over the latest save is loaded, but the manual save is the only one kept between game sessions.
Savable objects are easily editable by adding a “UniqueId” component to them, and assigning methods to Unity events.
Management of UI panels with a custom pushdown automata system. This includes prompts in the game world, item descriptions, dialogue interface, puzzle views and contextual prompts for player inputs.