pub trait IRingSelectRootMethods: IRingSelectRoot {
// Provided methods
fn get_ring_menu(self) -> GameObject { ... }
fn get_unit_status_root(self) -> GameObject { ... }
fn setup_ring_image(self) { ... }
fn set_ring_model_visible(self, is_ring: impl Into<bool>) { ... }
fn set_god_image_visible(self, is_visible: impl Into<bool>) { ... }
fn god_respond_voice(self) { ... }
fn setup_common_image(self, data: impl Into<RingData>) { ... }
fn ctor(self) { ... }
}Provided Methods§
GetRingMenu() overload
Sourcefn get_unit_status_root(self) -> GameObject
fn get_unit_status_root(self) -> GameObject
GetUnitStatusRoot() overload
Sourcefn setup_ring_image(self)
fn setup_ring_image(self)
SetupRingImage() overload
Sourcefn set_ring_model_visible(self, is_ring: impl Into<bool>)
fn set_ring_model_visible(self, is_ring: impl Into<bool>)
SetRingModelVisible(bool) overload
Sourcefn set_god_image_visible(self, is_visible: impl Into<bool>)
fn set_god_image_visible(self, is_visible: impl Into<bool>)
SetGodImageVisible(bool) overload
Sourcefn god_respond_voice(self)
fn god_respond_voice(self)
GodRespondVoice() overload
Sourcefn setup_common_image(self, data: impl Into<RingData>)
fn setup_common_image(self, data: impl Into<RingData>)
SetupCommonImage(crate::app::ringdata::RingData) 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: IRingSelectRoot> IRingSelectRootMethods for __T
Available on crate feature
app-ringselectroot only.