Skip to main content

IGrounding_Pelvis

Trait IGrounding_Pelvis 

Source
pub trait IGrounding_Pelvis: IObject {
    // Provided methods
    fn grounding(self) -> Grounding { ... }
    fn set_grounding(self, value: Grounding) { ... }
    fn last_root_position(self) -> Vector3 { ... }
    fn set_last_root_position(self, value: Vector3) { ... }
    fn damper_f(self) -> f32 { ... }
    fn set_damper_f(self, value: f32) { ... }
    fn initiated(self) -> bool { ... }
    fn set_initiated(self, value: bool) { ... }
    fn last_time(self) -> f64 { ... }
    fn set_last_time(self, value: f64) { ... }
}

Provided Methods§

Source

fn grounding(self) -> Grounding

Source

fn set_grounding(self, value: Grounding)

Source

fn last_root_position(self) -> Vector3

Source

fn set_last_root_position(self, value: Vector3)

Source

fn damper_f(self) -> f32

Source

fn set_damper_f(self, value: f32)

Source

fn initiated(self) -> bool

Source

fn set_initiated(self, value: bool)

Source

fn last_time(self) -> f64

Source

fn set_last_time(self, value: f64)

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§