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.
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".