This crate allows you to easily register arbitrary custom data to be loaded by Bevy as an Asset, from files using the RON format.
It minimizes the amount of boilerplate needed for such custom asset types.
You only need to derive the required traits on your custom type, and add a
RonAssetPlugin
to your App
!
Caveat: you need to come up with a unique file name extension for each new asset
type. Bevy also requires a unique UUID for TypeUuid
.
```rust
struct GameItemDescriptionAsset { damage: f32, durability: f32, min_level: u8, }
fn main() {
App::build()
// bevy
.addplugins(DefaultPlugins)
// our asset
.addplugin(
// load *.item
files
RonAssetPlugin::
fn setup(server: Res
// TODO: store the handles somewhere
} ```
Now you can just create files like assets/items/big_gun.item
:
(
damage: 25.0,
durability: 170.0,
min_level: 4,
)