Skip to main content

ITitleSequenceMethods

Trait ITitleSequenceMethods 

Source
pub trait ITitleSequenceMethods: ITitleSequence {
    // Provided methods
    fn post_bgm_event(self, bgm_event_name: impl Into<Il2CppString>) { ... }
    fn start(self) { ... }
    fn tick(self) { ... }
    fn fade_in(self) { ... }
    fn fade_out(self, is_bgm_fade_out: impl Into<bool>) { ... }
    fn end(self) { ... }
    fn get_desc(self) -> Array<ProcDesc> { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn post_bgm_event(self, bgm_event_name: impl Into<Il2CppString>)

PostBgmEvent(::unity::Il2CppString) overload

Source

fn start(self)

Start() overload

Source

fn tick(self)

Tick() overload

Source

fn fade_in(self)

FadeIn() overload

Source

fn fade_out(self, is_bgm_fade_out: impl Into<bool>)

FadeOut(bool) overload

Source

fn end(self)

End() overload

Source

fn get_desc(self) -> Array<ProcDesc>

GetDesc() 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: ITitleSequence> ITitleSequenceMethods for __T

Available on crate feature app-titlesequence only.