pub trait IFishingEventFaderMethods: IFishingEventFader {
// Provided methods
fn get_is_run(self) -> bool { ... }
fn set_is_run(self, value: impl Into<bool>) { ... }
fn create(self) { ... }
fn destroy(self) { ... }
fn fade_in(self, type: impl Into<FadeType>) { ... }
fn fade_out(self, type: impl Into<FadeType>) { ... }
fn set_color(self, set: impl Into<Color>) { ... }
fn get_fade_time(self, type: impl Into<FadeType>) -> f32 { ... }
fn late_update(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_is_run(self) -> bool
fn get_is_run(self) -> bool
get_IsRun() overload
Sourcefn set_is_run(self, value: impl Into<bool>)
fn set_is_run(self, value: impl Into<bool>)
set_IsRun(bool) overload
Sourcefn fade_in(self, type: impl Into<FadeType>)
fn fade_in(self, type: impl Into<FadeType>)
FadeIn(crate::app::fishing::fadetype::FadeType) overload
Sourcefn fade_out(self, type: impl Into<FadeType>)
fn fade_out(self, type: impl Into<FadeType>)
FadeOut(crate::app::fishing::fadetype::FadeType) overload
Sourcefn get_fade_time(self, type: impl Into<FadeType>) -> f32
fn get_fade_time(self, type: impl Into<FadeType>) -> f32
GetFadeTime(crate::app::fishing::fadetype::FadeType) 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: IFishingEventFader> IFishingEventFaderMethods for __T
Available on crate feature
app-fishingeventfader only.