aura-anim-core 0.2.2

Typed animation runtime and composable animation sources.
Documentation
//! Core animation primitives, timing types, composition utilities, and runtime storage.

#[cfg(feature = "iced")]
mod iced;
pub mod interpolate;
pub mod keyframes;
pub mod presence;
pub mod runtime;
pub mod spring;
pub mod timeline;
pub mod timing;
pub mod traits;
pub mod tween;

pub use aura_anim_macros::Animatable;
pub use interpolate::InterpolationProgress;
pub use presence::Presence;
pub use runtime::{AnimationCommand, Motion, MotionRuntime, RetainPolicy};
pub use spring::{Spring, SpringConfig};
pub use timeline::{Hold, Parallel, Sequence, Timeline};
pub use traits::{Animatable, Animation, AnimationState, Interpolate};
pub use tween::{Tween, TweenState};