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§
Sourcefn post_bgm_event(self, bgm_event_name: impl Into<Il2CppString>)
fn post_bgm_event(self, bgm_event_name: impl Into<Il2CppString>)
PostBgmEvent(::unity::Il2CppString) 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: ITitleSequence> ITitleSequenceMethods for __T
Available on crate feature
app-titlesequence only.