The goal of this project is to store settings in a resource throughout game launches.
Currently this crate supports Linux, Mac and Windows.
The crate will choose the appropriate path for each OS to store the config file.
This example will generate a config file on your system but it probably will not hurt you if you pick something non existent
```rust use bevy::prelude::*; use bevy_settings::{Serialize, Deserialize};
struct Settings { mastervolume: f64, customcursor: bool, }
fn main () {
App::new()
.addplugin(bevysettings::SettingsPlugin::
on e.g. my linux machine this will create
❯ cat ~/.config/myawesomegamestudio/My awesome game studio.toml
master_volume = 0.0
custom_cursor = false
Checkout the basic example to see how to persist the configuration.
| Version | Bevy Version | |---------|--------------| | 0.1.0 | 0.9 | | 0.2.0 | 0.10 | | 0.3.1 | 0.11 |