Skip to main content

ITutorialListRootMethods

Trait ITutorialListRootMethods 

Source
pub trait ITutorialListRootMethods: ITutorialListRoot {
Show 35 methods // Provided methods fn start(self) { ... } fn on_disable(self) { ... } fn update(self) { ... } fn idle(self) { ... } fn prepare_load(self) { ... } fn load(self) { ... } fn show(self) { ... } fn hide(self) { ... } fn prepare_unload(self) { ... } fn unload(self) { ... } fn update_alpha(self) { ... } fn get_menu_content(self) -> TutorialListSelectMenuContent { ... } fn set_category_title_text(self, text: impl Into<Il2CppString>) { ... } fn set_tutorial_title_text(self, text: impl Into<Il2CppString>) { ... } fn set_message_text(self, text: impl Into<Il2CppString>) { ... } fn set_page0_text(self, value: impl Into<i32>) { ... } fn set_page1_text(self, value: impl Into<i32>) { ... } fn set_sprite(self, sprite: impl Into<Sprite>) { ... } fn set_fade_type(self, fade_type: impl Into<TutorialListRoot_FadeType>) { ... } fn set_alpha(self, alpha: impl Into<f32>) { ... } fn set_active_right_arrow(self, enable: impl Into<bool>) { ... } fn set_active_left_arrow(self, enable: impl Into<bool>) { ... } fn get_wdw_tutorial_animator(self) -> Animator { ... } fn get_seq(self) -> TutorialListRoot_SequenceType { ... } fn set_seq(self, value: impl Into<TutorialListRoot_SequenceType>) { ... } fn set_main_sprite_atlas_path(self, value: impl Into<Il2CppString>) { ... } fn set_sub_sprite_atlas_path(self, value: impl Into<Il2CppString>) { ... } fn get_handle(self) -> TResourceHandle_1<SpriteAtlas> { ... } fn set_is_prepare_load(self, value: impl Into<bool>) { ... } fn get_main_sprite_atlas(self) -> SpriteAtlas { ... } fn get_sub_sprite_atlas(self) -> SpriteAtlas { ... } fn is_opening_wdw_tutorial(self) -> bool { ... } fn close_wdw_tutorial(self) { ... } fn is_closing_wdw_tutorial(self) -> bool { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn start(self)

Start() overload

Source

fn on_disable(self)

OnDisable() overload

Source

fn update(self)

Update() overload

Source

fn idle(self)

Idle() overload

Source

fn prepare_load(self)

PrepareLoad() overload

Source

fn load(self)

Load() overload

Source

fn show(self)

Show() overload

Source

fn hide(self)

Hide() overload

Source

fn prepare_unload(self)

PrepareUnload() overload

Source

fn unload(self)

Unload() overload

Source

fn update_alpha(self)

UpdateAlpha() overload

Source

fn get_menu_content(self) -> TutorialListSelectMenuContent

GetMenuContent() overload

Source

fn set_category_title_text(self, text: impl Into<Il2CppString>)

SetCategoryTitleText(::unity::Il2CppString) overload

Source

fn set_tutorial_title_text(self, text: impl Into<Il2CppString>)

SetTutorialTitleText(::unity::Il2CppString) overload

Source

fn set_message_text(self, text: impl Into<Il2CppString>)

SetMessageText(::unity::Il2CppString) overload

Source

fn set_page0_text(self, value: impl Into<i32>)

SetPage0Text(i32) overload

Source

fn set_page1_text(self, value: impl Into<i32>)

SetPage1Text(i32) overload

Source

fn set_sprite(self, sprite: impl Into<Sprite>)

SetSprite(crate::unity_engine::sprite::Sprite) overload

Source

fn set_fade_type(self, fade_type: impl Into<TutorialListRoot_FadeType>)

SetFadeType(crate::root::tutoriallistroot::TutorialListRoot_FadeType) overload

Source

fn set_alpha(self, alpha: impl Into<f32>)

SetAlpha(f32) overload

Source

fn set_active_right_arrow(self, enable: impl Into<bool>)

SetActiveRightArrow(bool) overload

Source

fn set_active_left_arrow(self, enable: impl Into<bool>)

SetActiveLeftArrow(bool) overload

Source

fn get_wdw_tutorial_animator(self) -> Animator

GetWdwTutorialAnimator() overload

Source

fn get_seq(self) -> TutorialListRoot_SequenceType

get_Seq() overload

Source

fn set_seq(self, value: impl Into<TutorialListRoot_SequenceType>)

set_Seq(crate::root::tutoriallistroot::TutorialListRoot_SequenceType) overload

Source

fn set_main_sprite_atlas_path(self, value: impl Into<Il2CppString>)

set_MainSpriteAtlasPath(::unity::Il2CppString) overload

Source

fn set_sub_sprite_atlas_path(self, value: impl Into<Il2CppString>)

set_SubSpriteAtlasPath(::unity::Il2CppString) overload

Source

fn get_handle(self) -> TResourceHandle_1<SpriteAtlas>

get_Handle() overload

Source

fn set_is_prepare_load(self, value: impl Into<bool>)

set_IsPrepareLoad(bool) overload

Source

fn get_main_sprite_atlas(self) -> SpriteAtlas

get_MainSpriteAtlas() overload

Source

fn get_sub_sprite_atlas(self) -> SpriteAtlas

get_SubSpriteAtlas() overload

Source

fn is_opening_wdw_tutorial(self) -> bool

IsOpeningWdwTutorial() overload

Source

fn close_wdw_tutorial(self)

CloseWdwTutorial() overload

Source

fn is_closing_wdw_tutorial(self) -> bool

IsClosingWdwTutorial() 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: ITutorialListRoot> ITutorialListRootMethods for __T

Available on crate feature root-tutoriallistroot only.