pub trait ITutorialSequenceMethods: ITutorialSequence {
Show 15 methods
// Provided methods
fn ctor(self, id: impl Into<Il2CppString>) { ... }
fn load_data(self) { ... }
fn unload_data(self) { ... }
fn is_load_data(self) -> bool { ... }
fn prepare_tutorial(self) { ... }
fn check_tutorial(self) { ... }
fn init(self) { ... }
fn open_window(self) { ... }
fn wait_open_window(self) { ... }
fn tutorial_tick(self) { ... }
fn is_close_window(self) -> bool { ... }
fn close_window(self) { ... }
fn wait_close_window(self) { ... }
fn set_page(self) { ... }
fn set_arrow(self) { ... }
}Provided Methods§
Sourcefn ctor(self, id: impl Into<Il2CppString>)
fn ctor(self, id: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn unload_data(self)
fn unload_data(self)
UnloadData() overload
Sourcefn is_load_data(self) -> bool
fn is_load_data(self) -> bool
IsLoadData() overload
Sourcefn prepare_tutorial(self)
fn prepare_tutorial(self)
PrepareTutorial() overload
Sourcefn check_tutorial(self)
fn check_tutorial(self)
CheckTutorial() overload
Sourcefn open_window(self)
fn open_window(self)
OpenWindow() overload
Sourcefn wait_open_window(self)
fn wait_open_window(self)
WaitOpenWindow() overload
Sourcefn tutorial_tick(self)
fn tutorial_tick(self)
TutorialTick() overload
Sourcefn is_close_window(self) -> bool
fn is_close_window(self) -> bool
IsCloseWindow() overload
Sourcefn close_window(self)
fn close_window(self)
CloseWindow() overload
Sourcefn wait_close_window(self)
fn wait_close_window(self)
WaitCloseWindow() 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: ITutorialSequence> ITutorialSequenceMethods for __T
Available on crate feature
app-tutorialsequence only.