Bevy common assets

crates.io docs license crates.io

Collection of Bevy plugins offering generic asset loaders for common file formats.

Supported formats:

| format | feature | example | |:----------|:----------|:--------------------------------------| | json | json | json.rs | | msgpack | msgpack | msgpack.rs | | ron | ron | ron.rs | | toml | toml | toml.rs | | xml | xml | xml.rs | | yaml | yaml | yaml.rs |

Usage

Enable the feature(s) for the format(s) that you want to use.

Define the types that you would like to load from files and derive serde::Deserialize, bevy::reflect::TypePath, and bevy::reflect::TypeUuid for them. The last derive requires a unique uuid as an attribute: ```rust

[derive(serde::Deserialize, bevy::reflect::TypeUuid, bevy::reflect::TypePath)]

[uuid = "413be529-bfeb-41b3-9db0-4b8b380a2c46"] // <-- keep me unique

struct Level { positions: Vec<[f32;3]>, } ```

With the types ready, you can start adding asset plugins. Every plugin gets the asset type that it is supposed to load as a generic parameter. You also need to configure custom file endings for each plugin: ```rust norun use bevy::prelude::*; use bevycommonassets::json::JsonAssetPlugin; use bevycommonassets::msgpack::MsgPackAssetPlugin; use bevycommonassets::ron::RonAssetPlugin; use bevycommonassets::toml::TomlAssetPlugin; use bevycommonassets::xml::XmlAssetPlugin; use bevycommon_assets::yaml::YamlAssetPlugin;

fn main() { App::new() .add_plugins(( DefaultPlugins, JsonAssetPlugin::::new(&["level.json", "custom.json"]), RonAssetPlugin::::new(&["level.ron"]), MsgPackAssetPlugin::::new(&["level.msgpack"]), TomlAssetPlugin::::new(&["level.toml"]), XmlAssetPlugin::::new(&["level.xml"]), YamlAssetPlugin::::new(&["level.yaml"]) )) // ... .run(); }

[derive(serde::Deserialize, bevy::reflect::TypeUuid, bevy::reflect::TypePath)]

[uuid = "413be529-bfeb-41b3-9db0-4b8b380a2c46"]

struct Level { positions: Vec<[f32; 3]>, } ```

The example above will load Level structs from json files ending on .level.json or .custom.json, from ron files ending on .level.ron and so on...

See the examples for working Bevy apps using the different formats.

Compatible Bevy versions

The main branch is compatible with the latest Bevy release.

Compatibility of bevy_common_assets versions:

| bevy_common_assets | bevy | |:---------------------|:-------| | 0.7 | 0.11 | | 0.5 - 0.6 | 0.10 | | 0.4 | 0.9 | | 0.3 | 0.8 | | 0.1 - 0.2 | 0.7 | | main | 0.10 | | bevy_main | main |

License

Dual-licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.