pub trait IDragonRideEventFaderMethods: IDragonRideEventFader {
// Provided methods
fn create(self) { ... }
fn destroy(self) { ... }
fn black_in(self, type: impl Into<FadeType_2>) { ... }
fn black_out(self, type: impl Into<FadeType_2>) { ... }
fn late_update(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn black_in(self, type: impl Into<FadeType_2>)
fn black_in(self, type: impl Into<FadeType_2>)
BlackIn(crate::app::dragon_ride::fadetype_2::FadeType_2) overload
Sourcefn black_out(self, type: impl Into<FadeType_2>)
fn black_out(self, type: impl Into<FadeType_2>)
BlackOut(crate::app::dragon_ride::fadetype_2::FadeType_2) overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IDragonRideEventFader> IDragonRideEventFaderMethods for __T
Available on crate feature
app-dragonrideeventfader only.