Skip to main content

ISynthesisRingBaseRingMenuMethods

Trait ISynthesisRingBaseRingMenuMethods 

Source
pub trait ISynthesisRingBaseRingMenuMethods: ISynthesisRingBaseRingMenu {
Show 16 methods // Provided methods fn get_m_god_unit_list(self) -> List_1<GodUnit> { ... } fn set_m_god_unit_list(self, value: impl Into<List_1<GodUnit>>) { ... } fn get_m_god_unit_index(self) -> i32 { ... } fn set_m_god_unit_index(self, value: impl Into<i32>) { ... } fn get_m_god_unit(self) -> GodUnit { ... } fn set_m_god_unit(self, value: impl Into<GodUnit>) { ... } fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<SynthesisRingBaseRingMenuContent>, god_unit_list: impl Into<List_1<GodUnit>>, initial_god_unit_index: impl Into<i32>, select_event_handler: impl Into<RingMenuItem_SelectEventHandler>, decide_event_handler: impl Into<RingMenuItem_DecideEventHandler>, request_close_event_handler: impl Into<SynthesisRingBaseRingMenu_CloseEventHandler>, ) { ... } fn rebuild_menu(self) { ... } fn rebuild_menu_item(self) { ... } fn get_name(self) -> Il2CppString { ... } fn enable_menu(self) { ... } fn disable_menu(self) { ... } fn get_select(self) -> BasicMenuSelect { ... } fn key_left(self, is_trigger: impl Into<bool>) { ... } fn key_right(self, is_trigger: impl Into<bool>) { ... } fn b_call(self) -> BasicMenu_Result { ... }
}

Provided Methods§

Source

fn get_m_god_unit_list(self) -> List_1<GodUnit>

get_m_GodUnitList() overload

Source

fn set_m_god_unit_list(self, value: impl Into<List_1<GodUnit>>)

set_m_GodUnitList(crate::system::collections::generic::list_1::List_1<crate::app::godunit::GodUnit>) overload

Source

fn get_m_god_unit_index(self) -> i32

get_m_GodUnitIndex() overload

Source

fn set_m_god_unit_index(self, value: impl Into<i32>)

set_m_GodUnitIndex(i32) overload

Source

fn get_m_god_unit(self) -> GodUnit

get_m_GodUnit() overload

Source

fn set_m_god_unit(self, value: impl Into<GodUnit>)

set_m_GodUnit(crate::app::godunit::GodUnit) overload

Source

fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<SynthesisRingBaseRingMenuContent>, god_unit_list: impl Into<List_1<GodUnit>>, initial_god_unit_index: impl Into<i32>, select_event_handler: impl Into<RingMenuItem_SelectEventHandler>, decide_event_handler: impl Into<RingMenuItem_DecideEventHandler>, request_close_event_handler: impl Into<SynthesisRingBaseRingMenu_CloseEventHandler>, )

.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::synthesisringbaseringmenucontent::SynthesisRingBaseRingMenuContent, crate::system::collections::generic::list_1::List_1<crate::app::godunit::GodUnit>, i32, crate::app::ringmenuitem::RingMenuItem_SelectEventHandler, crate::app::ringmenuitem::RingMenuItem_DecideEventHandler, crate::app::synthesisringbaseringmenu::SynthesisRingBaseRingMenu_CloseEventHandler) overload

Source

fn rebuild_menu(self)

RebuildMenu() overload

Source

fn rebuild_menu_item(self)

RebuildMenuItem() overload

Source

fn get_name(self) -> Il2CppString

GetName() overload

Source

fn enable_menu(self)

EnableMenu() overload

Source

fn disable_menu(self)

DisableMenu() overload

Source

fn get_select(self) -> BasicMenuSelect

GetSelect() overload

Source

fn key_left(self, is_trigger: impl Into<bool>)

KeyLeft(bool) overload

Source

fn key_right(self, is_trigger: impl Into<bool>)

KeyRight(bool) overload

Source

fn b_call(self) -> BasicMenu_Result

BCall() 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: ISynthesisRingBaseRingMenu> ISynthesisRingBaseRingMenuMethods for __T

Available on crate feature app-synthesisringbaseringmenu only.