beetmash_scene 0.0.7

The number one bevy scene registry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(trait_upcasting)]
pub mod extensions;
pub mod scene_exporter;
#[cfg(any(test, feature = "test"))]
pub mod test;
#[cfg(feature = "export_types")]
pub mod type_registry_exporter;
pub mod utils;

pub mod prelude {
	pub use crate::extensions::*;
	pub use crate::scene_exporter::*;
	#[cfg(any(test, feature = "test"))]
	pub use crate::test::*;
	#[cfg(feature = "export_types")]
	pub use crate::type_registry_exporter::*;
	pub use crate::utils::*;
}