1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Skeletons (rigs, joints) & animations pub mod joint; pub use joint::*; pub mod error; pub use error::*; pub mod asset; pub mod rig; pub use asset::{AnimationAsset, AnimationAssetType, AssetParseError, Compressed, Uncompressed}; pub use rig::*;