rustmotion 0.5.0

A CLI tool that renders motion design videos from JSON scenarios. No browser, no Node.js — just a single Rust binary.
1
2
3
4
5
6
use crate::schema::AnimationEffect;

/// Trait for components that support animation.
pub trait Animatable {
    fn animation_effects(&self) -> &[AnimationEffect];
}