3 releases (breaking)
0.3.0 | Jul 26, 2024 |
---|---|
0.2.0 | Jul 16, 2024 |
0.1.0 | Jul 4, 2024 |
#1268 in Game dev
34KB
170 lines
bevy_simple_prefs
An unambitious Bevy plugin for persisting multiple Bevy Resource
s into a single preferences file, suitable for small projects like jam games.
- Persists to a single
ron
file - Does IO in Bevy's async task pool
- WASM compatible
Usage
- Derive
Prefs
on astruct
with members that areResource
s you want to be saved - Simply modify your
Resource
s to initiate a save - Write code that reacts to those
Resource
s changing, if you want
Compatibility
bevy_simple_prefs |
bevy |
---|---|
0.1 -0.3 |
0.14 |
Contributing
Please feel free to open a PR, but keep in mind this project's goals. This is meant to be a very lightweight crate. There should be zero additional dependencies on other Bevy ecosystem crates.
Please keep PRs small and scoped to a single feature or fix.
Alternatives
If you need more features, check out bevy-persistent
or bevy-settings
. There are also a few other options in the persistence section of Bevy Assets.
Dependencies
~32MB
~603K SLoC