shipyard_scenegraph 0.6.1

Scenegraph for Entity Component System
#[cfg(feature = "nalgebra_math")]
/// Only if nalgebra_math feature is enabled
pub use crate::math::nalgebra::*;

#[cfg(feature = "nalgebra_glm_math")]
/// Only if nalgebra_math feature is enabled
pub use crate::math::nalgebra_glm::*;

#[cfg(feature = "native_math")]
/// Only if native_math feature is enabled
pub use crate::math::native::*;


#[cfg(feature = "nalgebra")]
pub use crate::math::nalgebra_common::*;

pub use crate::traits::extra::F32Compat;
pub use crate::traits::required::SliceExt;

pub use crate::hierarchy::SceneGraph;

pub use crate::components::{DirtyTransform, TransformRoot};

// re-export
pub use shipyard_hierarchy::*;