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§
Sourcefn get_ik_offset(self) -> Vector3
fn get_ik_offset(self) -> Vector3
get_IKOffset() overload
Sourcefn set_ik_offset(self, value: impl Into<Vector3>)
fn set_ik_offset(self, value: impl Into<Vector3>)
set_IKOffset(crate::unity_engine::vector3::Vector3) overload
Sourcefn get_height_offset(self) -> f32
fn get_height_offset(self) -> f32
get_heightOffset() overload
Sourcefn set_height_offset(self, value: impl Into<f32>)
fn set_height_offset(self, value: impl Into<f32>)
set_heightOffset(f32) overload
Sourcefn initiate(self, grounding: impl Into<Grounding>)
fn initiate(self, grounding: impl Into<Grounding>)
Initiate(crate::root_motion::final_ik::grounding::Grounding) 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: IGrounding_Pelvis> IGrounding_PelvisMethods for __T
Available on crate feature
root_motion-final_ik-grounding only.