pub trait IInterpolatorRotationCurveMethods: IInterpolatorRotationCurve {
// Provided methods
fn get_value(self) -> f32 { ... }
fn set_value(self, value: impl Into<f32>) { ... }
fn get_prev(self) -> f32 { ... }
fn set_prev(self, value: impl Into<f32>) { ... }
fn get_next(self) -> f32 { ... }
fn set_next(self, value: impl Into<f32>) { ... }
fn get_is_end(self) -> bool { ... }
fn get_curve(self) -> AnimationCurve { ... }
fn ctor(self, animation_curve: impl Into<AnimationCurve>) { ... }
fn set(self, value: impl Into<f32>, time: impl Into<f32>) { ... }
fn tick(self) { ... }
}Provided Methods§
Sourcefn get_is_end(self) -> bool
fn get_is_end(self) -> bool
get_IsEnd() overload
Sourcefn get_curve(self) -> AnimationCurve
fn get_curve(self) -> AnimationCurve
get_Curve() overload
Sourcefn ctor(self, animation_curve: impl Into<AnimationCurve>)
fn ctor(self, animation_curve: impl Into<AnimationCurve>)
.ctor(crate::unity_engine::animationcurve::AnimationCurve) 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: IInterpolatorRotationCurve> IInterpolatorRotationCurveMethods for __T
Available on crate feature
app-interpolatorrotationcurve only.