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§
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn calc_pid_or_gid(self) -> Il2CppString
fn calc_pid_or_gid(self) -> Il2CppString
CalcPidOrGid() overload
Sourcefn play_title_voice(self)
fn play_title_voice(self)
PlayTitleVoice() overload
Sourcefn play_subtitle_voice(self)
fn play_subtitle_voice(self)
PlaySubtitleVoice() overload
Sourcefn play_voice_common(
self,
sound_event_name: impl Into<Il2CppString>,
is_hero_female: impl Into<bool>,
)
fn play_voice_common( self, sound_event_name: impl Into<Il2CppString>, is_hero_female: impl Into<bool>, )
PlayVoiceCommon(::unity::Il2CppString, bool) overload
Sourcefn wait_until_voice_end(self)
fn wait_until_voice_end(self)
WaitUntilVoiceEnd() 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_ProcTitleCall> ITitleSequence_ProcTitleCallMethods for __T
Available on crate feature
app-titlesequence only.