Skip to main content

ITitleSequence_ProcTitleCallMethods

Trait ITitleSequence_ProcTitleCallMethods 

Source
pub trait ITitleSequence_ProcTitleCallMethods: ITitleSequence_ProcTitleCall {
    // Provided methods
    fn ctor(self) { ... }
    fn on_create(self) { ... }
    fn on_dispose(self) { ... }
    fn calc_pid_or_gid(self) -> Il2CppString { ... }
    fn play_title_voice(self) { ... }
    fn play_subtitle_voice(self) { ... }
    fn play_voice_common(
        self,
        sound_event_name: impl Into<Il2CppString>,
        is_hero_female: impl Into<bool>,
    ) { ... }
    fn wait_until_voice_end(self) { ... }
    fn get_desc(self) -> Array<ProcDesc> { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn on_create(self)

OnCreate() overload

Source

fn on_dispose(self)

OnDispose() overload

Source

fn calc_pid_or_gid(self) -> Il2CppString

CalcPidOrGid() overload

Source

fn play_title_voice(self)

PlayTitleVoice() overload

Source

fn play_subtitle_voice(self)

PlaySubtitleVoice() overload

Source

fn play_voice_common( self, sound_event_name: impl Into<Il2CppString>, is_hero_female: impl Into<bool>, )

PlayVoiceCommon(::unity::Il2CppString, bool) overload

Source

fn wait_until_voice_end(self)

WaitUntilVoiceEnd() overload

Source

fn get_desc(self) -> Array<ProcDesc>

GetDesc() 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_ProcTitleCall> ITitleSequence_ProcTitleCallMethods for __T

Available on crate feature app-titlesequence only.