pub trait IBasicSkillMenuItemContentMethods: IBasicSkillMenuItemContent {
// Provided methods
fn update_text_color(self) { ... }
fn set_icon_color(self, is_active_icon: impl Into<bool>) { ... }
fn find_game_object(self, name: impl Into<Il2CppString>) -> GameObject { ... }
fn setup_objects(self) { ... }
fn blank(self) { ... }
fn build(self, menu_item: impl Into<BasicMenuItem>) { ... }
fn build_text(self) { ... }
fn build_text_2(
self,
skill: impl Into<SkillData>,
is_active_icon: impl Into<bool>,
) { ... }
fn build_sub_text(self) { ... }
fn build_text_color(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn update_text_color(self)
fn update_text_color(self)
UpdateTextColor() overload
Sourcefn set_icon_color(self, is_active_icon: impl Into<bool>)
fn set_icon_color(self, is_active_icon: impl Into<bool>)
SetIconColor(bool) overload
Sourcefn find_game_object(self, name: impl Into<Il2CppString>) -> GameObject
fn find_game_object(self, name: impl Into<Il2CppString>) -> GameObject
FindGameObject(::unity::Il2CppString) overload
Sourcefn setup_objects(self)
fn setup_objects(self)
SetupObjects() overload
Sourcefn build(self, menu_item: impl Into<BasicMenuItem>)
fn build(self, menu_item: impl Into<BasicMenuItem>)
Build(crate::app::basicmenuitem::BasicMenuItem) overload
Sourcefn build_text(self)
fn build_text(self)
BuildText() overload
Sourcefn build_text_2(
self,
skill: impl Into<SkillData>,
is_active_icon: impl Into<bool>,
)
fn build_text_2( self, skill: impl Into<SkillData>, is_active_icon: impl Into<bool>, )
BuildText(crate::app::skilldata::SkillData, bool) overload
Sourcefn build_sub_text(self)
fn build_sub_text(self)
BuildSubText() overload
Sourcefn build_text_color(self)
fn build_text_color(self)
BuildTextColor() 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: IBasicSkillMenuItemContent> IBasicSkillMenuItemContentMethods for __T
Available on crate feature
app-basicskillmenuitemcontent only.