pub trait SceneTransition:
Process
+ Progress
+ Viewable {
// Required method
fn get_duration(&self, as_time: Option<bool>) -> i32;
}
Expand description
The SceneTransition should be implemented by objects intended to display visual transitions during scene changes.