pub trait ITradeMenuContentMethods: ITradeMenuContent {
// Provided methods
fn get_menu_item_content_max(self) -> i32 { ... }
fn init_obj_reference(self) { ... }
fn build_material(self) { ... }
fn update_cursor_size(self) { ... }
fn set_left_name(self, name: impl Into<Il2CppString>) { ... }
fn set_right_name(self, name: impl Into<Il2CppString>) { ... }
fn set_select_cursor_pos(self, menu_item_index: impl Into<i32>) { ... }
fn show_select_cursor(self) { ... }
fn hide_select_cursor(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
GetMenuItemContentMax() overload
Sourcefn init_obj_reference(self)
fn init_obj_reference(self)
InitObjReference() overload
Sourcefn build_material(self)
fn build_material(self)
BuildMaterial() overload
Sourcefn update_cursor_size(self)
fn update_cursor_size(self)
UpdateCursorSize() overload
Sourcefn set_left_name(self, name: impl Into<Il2CppString>)
fn set_left_name(self, name: impl Into<Il2CppString>)
SetLeftName(::unity::Il2CppString) overload
Sourcefn set_right_name(self, name: impl Into<Il2CppString>)
fn set_right_name(self, name: impl Into<Il2CppString>)
SetRightName(::unity::Il2CppString) overload
Sourcefn set_select_cursor_pos(self, menu_item_index: impl Into<i32>)
fn set_select_cursor_pos(self, menu_item_index: impl Into<i32>)
SetSelectCursorPos(i32) overload
Sourcefn show_select_cursor(self)
fn show_select_cursor(self)
ShowSelectCursor() overload
Sourcefn hide_select_cursor(self)
fn hide_select_cursor(self)
HideSelectCursor() 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: ITradeMenuContent> ITradeMenuContentMethods for __T
Available on crate feature
app-trademenucontent only.