pub trait ITalkLogSequenceMethods: ITalkLogSequence {
Show 13 methods
// Provided methods
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn show_talk_ui(self) { ... }
fn hide_talk_ui(self) { ... }
fn start_fade_in(self) { ... }
fn wait_fade_in(self) -> bool { ... }
fn tick(self) { ... }
fn stop_voice(self) { ... }
fn start_fade_out(self) { ... }
fn wait_fade_out(self) -> bool { ... }
fn end_fade_out(self) { ... }
fn get_desc(self) -> Array<ProcDesc> { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn show_talk_ui(self)
fn show_talk_ui(self)
ShowTalkUI() overload
Sourcefn hide_talk_ui(self)
fn hide_talk_ui(self)
HideTalkUI() overload
Sourcefn start_fade_in(self)
fn start_fade_in(self)
StartFadeIn() overload
Sourcefn wait_fade_in(self) -> bool
fn wait_fade_in(self) -> bool
WaitFadeIn() overload
Sourcefn stop_voice(self)
fn stop_voice(self)
StopVoice() overload
Sourcefn start_fade_out(self)
fn start_fade_out(self)
StartFadeOut() overload
Sourcefn wait_fade_out(self) -> bool
fn wait_fade_out(self) -> bool
WaitFadeOut() overload
Sourcefn end_fade_out(self)
fn end_fade_out(self)
EndFadeOut() 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: ITalkLogSequence> ITalkLogSequenceMethods for __T
Available on crate feature
app-talk3_d-talklogsequence only.