An animation toolkit written in Rust using the Bevy game engine.
Features
Event and Tag based animation of objects
Translation animation
Rotation animation
Fading of sprites and text
Changing of background colour
What can this be used for
I wrote this library to use for interactive video animations.
This uses the Bevy game engine to perform the animations.
I can also imagine this being used for in game animations, if you use the Bevy game engine.
Future goals
More animations/animation options (e.g. acceleration and deceleration for objects)
Data driven animations
E.g. a toml/json file containing the objects in the scene with their initial parameters and the animation steps.
Based on the data driven animation tooling maybe a visual editor
Example
```rust
use bevy::{
corepipeline::{bloom::BloomSettings, tonemapping::Tonemapping},
prelude::*,
text::Text,
};
use elaphos::animation::{ElaphosAnimationEvent, ElaphosDefaultPlugins, ObjectLabel};
use elaphos::changebackground::BackgroundEvent;
use elaphos::fade::FadeEvent;
use elaphos::movement::{RotateEvent, RotationType, TranslateEvent, TranslationType};