nightshade 0.8.0

A cross-platform data-oriented game engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "assets")]
mod gltf_import;
mod spawn;
#[cfg(feature = "physics")]
mod spawn_physics;

#[cfg(all(feature = "fbx", not(target_arch = "wasm32")))]
mod fbx_import;

#[cfg(feature = "assets")]
pub use gltf_import::*;
pub use spawn::*;

#[cfg(all(feature = "fbx", not(target_arch = "wasm32")))]
pub use fbx_import::*;