Skip to main content

IRingSelectRootMethods

Trait IRingSelectRootMethods 

Source
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§

Source

fn get_ring_menu(self) -> GameObject

GetRingMenu() overload

Source

fn get_unit_status_root(self) -> GameObject

GetUnitStatusRoot() overload

Source

fn setup_ring_image(self)

SetupRingImage() overload

Source

fn set_ring_model_visible(self, is_ring: impl Into<bool>)

SetRingModelVisible(bool) overload

Source

fn set_god_image_visible(self, is_visible: impl Into<bool>)

SetGodImageVisible(bool) overload

Source

fn god_respond_voice(self)

GodRespondVoice() overload

Source

fn setup_common_image(self, data: impl Into<RingData>)

SetupCommonImage(crate::app::ringdata::RingData) overload

Source

fn ctor(self)

.ctor() 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: IRingSelectRoot> IRingSelectRootMethods for __T

Available on crate feature app-ringselectroot only.