bevy_assets_extensions 0.8.2

Extensions for bevy assets, with support of collection as assets and a loader manager.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module with assets.

pub mod bundle;
pub(crate) mod text;

#[cfg(feature = "atlas_layout")]
pub(crate) mod atlas_layout;

#[cfg(feature = "yaml")]
pub mod serde;

pub use bundle::AssetsBundle;
pub use text::Text;