1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use amethyst_assets::Processor; use crate::resources::{Animation, Sampler}; pub use self::{ control::{AnimationControlSystem, AnimationControlSystemDesc}, sampling::SamplerInterpolationSystem, }; mod control; mod sampling; /// Asset storage processor for `Sampler` pub type SamplerProcessor<S> = Processor<Sampler<S>>; /// Asset storage processor for `Animation` pub type AnimationProcessor<T> = Processor<Animation<T>>;