pub trait IMyRoomFadeRenderMethods: IMyRoomFadeRender {
// Provided methods
fn start(self) { ... }
fn set_color(self, color: impl Into<Color>) { ... }
fn late_update(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_color(self, color: impl Into<Color>)
fn set_color(self, color: impl Into<Color>)
SetColor(crate::unity_engine::color::Color) 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: IMyRoomFadeRender> IMyRoomFadeRenderMethods for __T
Available on crate feature
app-myroomfaderender only.