- Music by Twitchywhalez YouTube/BandCamp
- Art by DarkDax YouTube and InkeFaux
- Game programming by @VanGeck, @Jazzaro, @frederickjjoubert, @parK-dev
Escapewill back out of the game to the main menu. If you're already on the main menu, it will instantly close the game.F11will toggle betweenBorderlessFullscreenandWindowedmode.LShift + Clickwill use / equip / consume items.LCtrl + LAlt + Clickwill delete items.Dragitems to move them to the combining area.Left-clickthe combine button to combine items.Spacewhen prompted to press it for the dungeon sim to continue.
- Add it as a struct to
src/config/. - Add it to the
src/loading/systems/load_configs()function to load as a resource. - Add a ron file with default values to
assets/config/default.
You can request it as a resource in systems: config: Res<GridConfig>,.
Every config file is present as a ron file in the assets/config/default/ directory. If you need to change one of the
constants for yourself, for testing purposes, you can copy the relevant config file to assets/config/override/ and
change the values to your wishes. Those files wil not be added to source control, so you're not messing with anyone
else's build.
Some suggestions on how to use this:
- Override the
audio.ronfile to turn down the music and sound effects. - Override the
debug.ronfile to skip past the main menu when testing. - Override the
log.ronfile to tweak to log filter.

