pub trait IRingCleaningRingControllerMethods: IRingCleaningRingController {
Show 14 methods
// Provided methods
fn get_can_reset_rotate(self) -> bool { ... }
fn set_can_reset_rotate(self, value: impl Into<bool>) { ... }
fn ctor(self, god: impl Into<GodUnit>) { ... }
fn get_ring_collider(self) -> RingCollider { ... }
fn load_async(self) { ... }
fn is_loading(self) -> bool { ... }
fn unload(self) { ... }
fn initialize(self, info_root: impl Into<RingCleaningRoot>) { ... }
fn update_rotate(self, rdx: impl Into<f32>, rdy: impl Into<f32>) { ... }
fn update_dirty_tick(self) { ... }
fn set_material_dirty(self, dirty: impl Into<i32>) { ... }
fn set_material_dirty_immediately(self, dirty: impl Into<i32>) { ... }
fn set_reset_rotation(self) { ... }
fn update_reset_rotation(self) -> bool { ... }
}Provided Methods§
Sourcefn get_can_reset_rotate(self) -> bool
fn get_can_reset_rotate(self) -> bool
get_CanResetRotate() overload
Sourcefn set_can_reset_rotate(self, value: impl Into<bool>)
fn set_can_reset_rotate(self, value: impl Into<bool>)
set_CanResetRotate(bool) overload
Sourcefn get_ring_collider(self) -> RingCollider
fn get_ring_collider(self) -> RingCollider
get_RingCollider() overload
Sourcefn load_async(self)
fn load_async(self)
LoadAsync() overload
Sourcefn is_loading(self) -> bool
fn is_loading(self) -> bool
IsLoading() overload
Sourcefn initialize(self, info_root: impl Into<RingCleaningRoot>)
fn initialize(self, info_root: impl Into<RingCleaningRoot>)
Initialize(crate::app::ringcleaningroot::RingCleaningRoot) overload
Sourcefn update_rotate(self, rdx: impl Into<f32>, rdy: impl Into<f32>)
fn update_rotate(self, rdx: impl Into<f32>, rdy: impl Into<f32>)
UpdateRotate(f32, f32) overload
Sourcefn update_dirty_tick(self)
fn update_dirty_tick(self)
UpdateDirtyTick() overload
Sourcefn set_material_dirty(self, dirty: impl Into<i32>)
fn set_material_dirty(self, dirty: impl Into<i32>)
SetMaterialDirty(i32) overload
Sourcefn set_material_dirty_immediately(self, dirty: impl Into<i32>)
fn set_material_dirty_immediately(self, dirty: impl Into<i32>)
SetMaterialDirtyImmediately(i32) overload
Sourcefn set_reset_rotation(self)
fn set_reset_rotation(self)
SetResetRotation() overload
Sourcefn update_reset_rotation(self) -> bool
fn update_reset_rotation(self) -> bool
UpdateResetRotation() 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: IRingCleaningRingController> IRingCleaningRingControllerMethods for __T
Available on crate feature
app-ringcleaningringcontroller only.