pub trait IRingCleaningConditionIconMethods: IRingCleaningConditionIcon {
// Provided methods
fn start(self) { ... }
fn play_icon_anim(
self,
old_dirty: impl Into<i32>,
new_dirty: impl Into<i32>,
) { ... }
fn reset_param(self) { ... }
fn set_position(self, x: impl Into<f32>) { ... }
fn set_bool_animators(
self,
name: impl Into<Il2CppString>,
value: impl Into<bool>,
) { ... }
fn play_animators(self, state_name: impl Into<Il2CppString>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn play_icon_anim(self, old_dirty: impl Into<i32>, new_dirty: impl Into<i32>)
fn play_icon_anim(self, old_dirty: impl Into<i32>, new_dirty: impl Into<i32>)
PlayIconAnim(i32, i32) overload
Sourcefn reset_param(self)
fn reset_param(self)
ResetParam() overload
Sourcefn set_position(self, x: impl Into<f32>)
fn set_position(self, x: impl Into<f32>)
SetPosition(f32) overload
Sourcefn set_bool_animators(
self,
name: impl Into<Il2CppString>,
value: impl Into<bool>,
)
fn set_bool_animators( self, name: impl Into<Il2CppString>, value: impl Into<bool>, )
SetBoolAnimators(::unity::Il2CppString, bool) overload
Sourcefn play_animators(self, state_name: impl Into<Il2CppString>)
fn play_animators(self, state_name: impl Into<Il2CppString>)
PlayAnimators(::unity::Il2CppString) 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: IRingCleaningConditionIcon> IRingCleaningConditionIconMethods for __T
Available on crate feature
app-ringcleaningconditionicon only.