Expand description
§bevy_assets_reflect
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 |
Structs§
- Json
Reflect Asset Plugin - Plugin to load your asset type
Afrom json files. - Reflection
Asset Loader