Skip to main content

IInterpolatorRotationCurveMethods

Trait IInterpolatorRotationCurveMethods 

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

Source

fn get_value(self) -> f32

get_Value() overload

Source

fn set_value(self, value: impl Into<f32>)

set_Value(f32) overload

Source

fn get_prev(self) -> f32

get_Prev() overload

Source

fn set_prev(self, value: impl Into<f32>)

set_Prev(f32) overload

Source

fn get_next(self) -> f32

get_Next() overload

Source

fn set_next(self, value: impl Into<f32>)

set_Next(f32) overload

Source

fn get_is_end(self) -> bool

get_IsEnd() overload

Source

fn get_curve(self) -> AnimationCurve

get_Curve() overload

Source

fn ctor(self, animation_curve: impl Into<AnimationCurve>)

.ctor(crate::unity_engine::animationcurve::AnimationCurve) overload

Source

fn set(self, value: impl Into<f32>, time: impl Into<f32>)

Set(f32, f32) overload

Source

fn tick(self)

Tick() 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: IInterpolatorRotationCurve> IInterpolatorRotationCurveMethods for __T

Available on crate feature app-interpolatorrotationcurve only.