pub trait IHitStopMethods: IHitStop {
// Provided methods
fn ctor(self, hit_stop_speed_curve: impl Into<AnimationCurve>) { ... }
fn dispose(self) { ... }
fn reset(self) { ... }
fn get_remaining_time(self) -> f32 { ... }
fn set_remaining_time(self, value: impl Into<f32>) { ... }
fn get_is_running(self) -> bool { ... }
fn get_speed(self) -> f32 { ... }
fn set_speed(self, value: impl Into<f32>) { ... }
fn get_normalized_time(self) -> f32 { ... }
fn start(self, time: impl Into<f32>) { ... }
fn update(self) { ... }
fn resume(self) { ... }
}Provided Methods§
Sourcefn ctor(self, hit_stop_speed_curve: impl Into<AnimationCurve>)
fn ctor(self, hit_stop_speed_curve: impl Into<AnimationCurve>)
.ctor(crate::unity_engine::animationcurve::AnimationCurve) overload
Sourcefn get_remaining_time(self) -> f32
fn get_remaining_time(self) -> f32
get_RemainingTime() overload
Sourcefn set_remaining_time(self, value: impl Into<f32>)
fn set_remaining_time(self, value: impl Into<f32>)
set_RemainingTime(f32) overload
Sourcefn get_is_running(self) -> bool
fn get_is_running(self) -> bool
get_IsRunning() overload
Sourcefn get_normalized_time(self) -> f32
fn get_normalized_time(self) -> f32
get_NormalizedTime() 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: IHitStop> IHitStopMethods for __T
Available on crate feature
combat-hitstop only.