#bevy-assets #bevy-plugin #reflection

bevy_assets_reflect

Reflection based asset loader plugin for Bevy

2 releases

0.1.1 Oct 28, 2025
0.1.0 Oct 28, 2025

#1691 in Game dev

MIT/Apache

26KB
75 lines

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

Dependencies

~57–95MB
~1.5M SLoC