pub trait IAmiiboAccessoryMenuContentMethods: IAmiiboAccessoryMenuContent {
// Provided methods
fn calc_w(self) -> f32 { ... }
fn calc_h(self) -> f32 { ... }
fn after_build(self) { ... }
fn calc_cursor_moved_pos_y(self, menu_item_index: impl Into<i32>) -> f32 { ... }
fn update_ticket_value(self) { ... }
fn hide_menu_info(self) { ... }
fn set_menu_info(
self,
data: impl Into<AccessoryData>,
is_ng: impl Into<bool>,
) { ... }
fn set_unit_name(self, unit_name: impl Into<Il2CppString>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn after_build(self)
fn after_build(self)
AfterBuild() 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 update_ticket_value(self)
fn update_ticket_value(self)
UpdateTicketValue() overload
HideMenuInfo() overload
SetMenuInfo(crate::app::accessorydata::AccessoryData, bool) overload
Sourcefn set_unit_name(self, unit_name: impl Into<Il2CppString>)
fn set_unit_name(self, unit_name: impl Into<Il2CppString>)
SetUnitName(::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: IAmiiboAccessoryMenuContent> IAmiiboAccessoryMenuContentMethods for __T
Available on crate feature
app-amiiboaccessorymenucontent only.