Skip to content

vanGeck/bevy-jam-2

Repository files navigation

Screenshot from 2022-08-29 10-11-16

Contributors

Hotkeys

  • Escape will back out of the game to the main menu. If you're already on the main menu, it will instantly close the game.
  • F11 will toggle between BorderlessFullscreen and Windowed mode.
  • LShift + Click will use / equip / consume items.
  • LCtrl + LAlt + Click will delete items.
  • Drag items to move them to the combining area.
  • Left-click the combine button to combine items.
  • Space when prompted to press it for the dungeon sim to continue.

image

Config files

Adding new config files

  • 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.

Using the configs in systems

You can request it as a resource in systems: config: Res<GridConfig>,.

Overriding configs

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.ron file to turn down the music and sound effects.
  • Override the debug.ron file to skip past the main menu when testing.
  • Override the log.ron file to tweak to log filter.

About

No description, website, or topics provided.

Resources

License

MIT, Apache-2.0 licenses found

Licenses found

MIT
license.md
Apache-2.0
license-apache.md

Stars

Watchers

Forks

Packages

No packages published

Languages