Skip to main content

IFishingEventFaderMethods

Trait IFishingEventFaderMethods 

Source
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§

Source

fn get_is_run(self) -> bool

get_IsRun() overload

Source

fn set_is_run(self, value: impl Into<bool>)

set_IsRun(bool) overload

Source

fn create(self)

Create() overload

Source

fn destroy(self)

Destroy() overload

Source

fn fade_in(self, type: impl Into<FadeType>)

FadeIn(crate::app::fishing::fadetype::FadeType) overload

Source

fn fade_out(self, type: impl Into<FadeType>)

FadeOut(crate::app::fishing::fadetype::FadeType) overload

Source

fn set_color(self, set: impl Into<Color>)

SetColor(crate::unity_engine::color::Color) overload

Source

fn get_fade_time(self, type: impl Into<FadeType>) -> f32

GetFadeTime(crate::app::fishing::fadetype::FadeType) overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IFishingEventFader> IFishingEventFaderMethods for __T

Available on crate feature app-fishingeventfader only.