bevy_assets_reflect

Crates.iobevy_assets_reflect
lib.rsbevy_assets_reflect
version0.1.1
created_at2025-10-28 21:23:38.536819+00
updated_at2025-10-28 21:35:41.160305+00
descriptionReflection based asset loader plugin for Bevy
homepage
repositoryhttps://github.com/Leinnan/bevy_assets_reflect
max_upload_size
id1905683
size87,147
MevLyshkin (Leinnan)

documentation

README

bevy_assets_reflect

Crates.io Documentation MIT/Apache 2.0

Simple package for adding assets loaders for types that implement Reflect and Asset trait. It can be used for types that don't implement Serialize or Deserialize traits thanks to using the Bevy reflect serialization.

For adding use add plugins API, for example:

app.add_plugins(bevy_assets_reflect::JsonReflectAssetPlugin::<SomeType>::new(
            &["that_type.json"]
        ));

License

bevy_assets_reflect is dual-licensed under MIT and Apache 2.0 at your option.

Compatibility

bevy bevy_assets_reflect
0.17 0.1
Commit count: 0

cargo fmt