bevy_assets_extensions 0.7.0

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
//! Module with assets.

pub mod bundle;
pub(crate) mod text;

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

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