Skip to main content

IGrounding_PelvisMethods

Trait IGrounding_PelvisMethods 

Source
pub trait IGrounding_PelvisMethods: IGrounding_Pelvis {
    // Provided methods
    fn get_ik_offset(self) -> Vector3 { ... }
    fn set_ik_offset(self, value: impl Into<Vector3>) { ... }
    fn get_height_offset(self) -> f32 { ... }
    fn set_height_offset(self, value: impl Into<f32>) { ... }
    fn initiate(self, grounding: impl Into<Grounding>) { ... }
    fn reset(self) { ... }
    fn on_enable(self) { ... }
    fn process(
        self,
        lowest_offset: impl Into<f32>,
        highest_offset: impl Into<f32>,
        is_grounded: impl Into<bool>,
    ) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_ik_offset(self) -> Vector3

get_IKOffset() overload

Source

fn set_ik_offset(self, value: impl Into<Vector3>)

set_IKOffset(crate::unity_engine::vector3::Vector3) overload

Source

fn get_height_offset(self) -> f32

get_heightOffset() overload

Source

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

set_heightOffset(f32) overload

Source

fn initiate(self, grounding: impl Into<Grounding>)

Initiate(crate::root_motion::final_ik::grounding::Grounding) overload

Source

fn reset(self)

Reset() overload

Source

fn on_enable(self)

OnEnable() overload

Source

fn process( self, lowest_offset: impl Into<f32>, highest_offset: impl Into<f32>, is_grounded: impl Into<bool>, )

Process(f32, f32, bool) overload

Source

fn ctor(self)

.ctor() 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: IGrounding_Pelvis> IGrounding_PelvisMethods for __T

Available on crate feature root_motion-final_ik-grounding only.