pub trait IMaterialListMenuContentMethods: IMaterialListMenuContent {
// Provided methods
fn get_category(self) -> MaterialListMenuContent_CategoryType { ... }
fn set_category(
self,
value: impl Into<MaterialListMenuContent_CategoryType>,
) { ... }
fn calc_cursor_moved_pos_y(self, menu_item_index: impl Into<i32>) -> f32 { ... }
fn init_category(self) { ... }
fn left_category(self, is_trigger: impl Into<bool>) { ... }
fn right_category(self, is_trigger: impl Into<bool>) { ... }
fn set_item_help_text(self, text: impl Into<Il2CppString>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_category(self) -> MaterialListMenuContent_CategoryType
fn get_category(self) -> MaterialListMenuContent_CategoryType
get_Category() overload
Sourcefn set_category(self, value: impl Into<MaterialListMenuContent_CategoryType>)
fn set_category(self, value: impl Into<MaterialListMenuContent_CategoryType>)
set_Category(crate::app::materiallistmenucontent::MaterialListMenuContent_CategoryType) overload
Sourcefn calc_cursor_moved_pos_y(self, menu_item_index: impl Into<i32>) -> f32
fn calc_cursor_moved_pos_y(self, menu_item_index: impl Into<i32>) -> f32
CalcCursorMovedPosY(i32) overload
Sourcefn init_category(self)
fn init_category(self)
InitCategory() overload
Sourcefn left_category(self, is_trigger: impl Into<bool>)
fn left_category(self, is_trigger: impl Into<bool>)
LeftCategory(bool) overload
Sourcefn right_category(self, is_trigger: impl Into<bool>)
fn right_category(self, is_trigger: impl Into<bool>)
RightCategory(bool) overload
Sourcefn set_item_help_text(self, text: impl Into<Il2CppString>)
fn set_item_help_text(self, text: impl Into<Il2CppString>)
SetItemHelpText(::unity::Il2CppString) 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: IMaterialListMenuContent> IMaterialListMenuContentMethods for __T
Available on crate feature
app-materiallistmenucontent only.