pub trait IRefineShopEngraveDemoMethods: IRefineShopEngraveDemo {
Show 15 methods
// Provided methods
fn get_m_base_unit_item(self) -> UnitItem { ... }
fn set_m_base_unit_item(self, value: impl Into<UnitItem>) { ... }
fn get_m_engraved_unit_item(self) -> UnitItem { ... }
fn set_m_engraved_unit_item(self, value: impl Into<UnitItem>) { ... }
fn get_m_god_data(self) -> GodData { ... }
fn set_m_god_data(self, value: impl Into<GodData>) { ... }
fn create_default_desc(self) -> Array<ProcDesc> { ... }
fn ctor(
self,
super_: impl Into<ProcInst>,
shop_weapon_model_renderer: impl Into<ShopWeaponModelRenderer>,
base_unit_item: impl Into<UnitItem>,
engraved_unit_item: impl Into<UnitItem>,
god_data: impl Into<GodData>,
) { ... }
fn load_prefabs(self) { ... }
fn is_loading_prefabs(self) -> bool { ... }
fn build(self) { ... }
fn start_sound(self) { ... }
fn tick(self) { ... }
fn is_playing(self) -> bool { ... }
fn destroy_and_unload_prefabs(self) { ... }
}Provided Methods§
Sourcefn get_m_base_unit_item(self) -> UnitItem
fn get_m_base_unit_item(self) -> UnitItem
get_m_BaseUnitItem() overload
Sourcefn set_m_base_unit_item(self, value: impl Into<UnitItem>)
fn set_m_base_unit_item(self, value: impl Into<UnitItem>)
set_m_BaseUnitItem(crate::app::unititem::UnitItem) overload
Sourcefn get_m_engraved_unit_item(self) -> UnitItem
fn get_m_engraved_unit_item(self) -> UnitItem
get_m_EngravedUnitItem() overload
Sourcefn set_m_engraved_unit_item(self, value: impl Into<UnitItem>)
fn set_m_engraved_unit_item(self, value: impl Into<UnitItem>)
set_m_EngravedUnitItem(crate::app::unititem::UnitItem) overload
Sourcefn get_m_god_data(self) -> GodData
fn get_m_god_data(self) -> GodData
get_m_GodData() overload
Sourcefn set_m_god_data(self, value: impl Into<GodData>)
fn set_m_god_data(self, value: impl Into<GodData>)
set_m_GodData(crate::app::goddata::GodData) overload
Sourcefn create_default_desc(self) -> Array<ProcDesc>
fn create_default_desc(self) -> Array<ProcDesc>
CreateDefaultDesc() overload
Sourcefn ctor(
self,
super_: impl Into<ProcInst>,
shop_weapon_model_renderer: impl Into<ShopWeaponModelRenderer>,
base_unit_item: impl Into<UnitItem>,
engraved_unit_item: impl Into<UnitItem>,
god_data: impl Into<GodData>,
)
fn ctor( self, super_: impl Into<ProcInst>, shop_weapon_model_renderer: impl Into<ShopWeaponModelRenderer>, base_unit_item: impl Into<UnitItem>, engraved_unit_item: impl Into<UnitItem>, god_data: impl Into<GodData>, )
.ctor(crate::app::procinst::ProcInst, crate::app::shopweaponmodelrenderer::ShopWeaponModelRenderer, crate::app::unititem::UnitItem, crate::app::unititem::UnitItem, crate::app::goddata::GodData) overload
Sourcefn load_prefabs(self)
fn load_prefabs(self)
LoadPrefabs() overload
Sourcefn is_loading_prefabs(self) -> bool
fn is_loading_prefabs(self) -> bool
IsLoadingPrefabs() overload
Sourcefn start_sound(self)
fn start_sound(self)
StartSound() overload
Sourcefn is_playing(self) -> bool
fn is_playing(self) -> bool
IsPlaying() overload
Sourcefn destroy_and_unload_prefabs(self)
fn destroy_and_unload_prefabs(self)
DestroyAndUnloadPrefabs() 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: IRefineShopEngraveDemo> IRefineShopEngraveDemoMethods for __T
app-refineshopengravedemo only.