Skip to main content

ILoadingLogoMethods

Trait ILoadingLogoMethods 

Source
pub trait ILoadingLogoMethods: ILoadingLogo {
Show 14 methods // Provided methods fn awake(self) { ... } fn start(self) { ... } fn late_update(self) { ... } fn set_text( self, text_mesh: impl Into<TextMeshProUGUI>, text: impl Into<Il2CppString>, ) { ... } fn set_tips_data(self, tips_data: impl Into<TipsData>) { ... } fn clear(self) { ... } fn show_impl(self, mode: impl Into<LoadingManager_Modes>) { ... } fn show_impl_2( self, hero_unit: impl Into<Unit>, eat_unit0: impl Into<Unit>, eat_unit1: impl Into<Unit>, ) { ... } fn show_impl_3( self, tips_data: impl Into<TipsData>, hero_unit: impl Into<Unit>, eat_unit0: impl Into<Unit>, eat_unit1: impl Into<Unit>, ) { ... } fn setup_unit_dot( self, icon_index: impl Into<i32>, unit: impl Into<Unit>, ) -> bool { ... } fn setup_unit_dot_2( self, icon_index: impl Into<i32>, person: impl Into<PersonData>, is_female: impl Into<bool>, ) -> bool { ... } fn hide_impl(self) { ... } fn commit(self) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn awake(self)

Awake() overload

Source

fn start(self)

Start() overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn set_text( self, text_mesh: impl Into<TextMeshProUGUI>, text: impl Into<Il2CppString>, )

SetText(crate::tm_pro::textmeshprougui::TextMeshProUGUI, ::unity::Il2CppString) overload

Source

fn set_tips_data(self, tips_data: impl Into<TipsData>)

SetTipsData(crate::app::tipsdata::TipsData) overload

Source

fn clear(self)

Clear() overload

Source

fn show_impl(self, mode: impl Into<LoadingManager_Modes>)

ShowImpl(crate::app::loadingmanager::LoadingManager_Modes) overload

Source

fn show_impl_2( self, hero_unit: impl Into<Unit>, eat_unit0: impl Into<Unit>, eat_unit1: impl Into<Unit>, )

ShowImpl(crate::app::unit::Unit, crate::app::unit::Unit, crate::app::unit::Unit) overload

Source

fn show_impl_3( self, tips_data: impl Into<TipsData>, hero_unit: impl Into<Unit>, eat_unit0: impl Into<Unit>, eat_unit1: impl Into<Unit>, )

ShowImpl(crate::app::tipsdata::TipsData, crate::app::unit::Unit, crate::app::unit::Unit, crate::app::unit::Unit) overload

Source

fn setup_unit_dot( self, icon_index: impl Into<i32>, unit: impl Into<Unit>, ) -> bool

SetupUnitDot(i32, crate::app::unit::Unit) overload

Source

fn setup_unit_dot_2( self, icon_index: impl Into<i32>, person: impl Into<PersonData>, is_female: impl Into<bool>, ) -> bool

SetupUnitDot(i32, crate::app::persondata::PersonData, bool) overload

Source

fn hide_impl(self)

HideImpl() overload

Source

fn commit(self)

Commit() 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: ILoadingLogo> ILoadingLogoMethods for __T

Available on crate feature app-loadinglogo only.