Skip to main content

ITalkLogSequenceMethods

Trait ITalkLogSequenceMethods 

Source
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§

Source

fn on_create(self)

OnCreate() overload

Source

fn on_dispose(self)

OnDispose() overload

Source

fn show_talk_ui(self)

ShowTalkUI() overload

Source

fn hide_talk_ui(self)

HideTalkUI() overload

Source

fn start_fade_in(self)

StartFadeIn() overload

Source

fn wait_fade_in(self) -> bool

WaitFadeIn() overload

Source

fn tick(self)

Tick() overload

Source

fn stop_voice(self)

StopVoice() overload

Source

fn start_fade_out(self)

StartFadeOut() overload

Source

fn wait_fade_out(self) -> bool

WaitFadeOut() overload

Source

fn end_fade_out(self)

EndFadeOut() 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: ITalkLogSequence> ITalkLogSequenceMethods for __T

Available on crate feature app-talk3_d-talklogsequence only.