pub trait AnimationController:
Send
+ Sync
+ Any {
// Provided methods
fn on_start(&self, animation: &Animation) { ... }
fn on_stop(&self, animation: &Animation) { ... }
}Expand description
Animations controller.
See VARS.with_animation_controller for more details.