sardonyx_animation 0.0.3

Animation support for sardonyx
use sardonyx_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>>;