pub trait IOffsetModifier_OffsetLimitsMethods: IOffsetModifier_OffsetLimits {
// Provided methods
fn apply(
self,
e: impl Into<IKEffector>,
root_rotation: impl Into<Quaternion>,
) { ... }
fn spring_axis(
self,
value: impl Into<f32>,
min: impl Into<f32>,
max: impl Into<f32>,
) -> f32 { ... }
fn spring(
self,
value: impl Into<f32>,
limit: impl Into<f32>,
negative: impl Into<bool>,
) -> f32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn apply(self, e: impl Into<IKEffector>, root_rotation: impl Into<Quaternion>)
fn apply(self, e: impl Into<IKEffector>, root_rotation: impl Into<Quaternion>)
Apply(crate::root_motion::final_ik::ikeffector::IKEffector, crate::unity_engine::quaternion::Quaternion) overload
Sourcefn spring_axis(
self,
value: impl Into<f32>,
min: impl Into<f32>,
max: impl Into<f32>,
) -> f32
fn spring_axis( self, value: impl Into<f32>, min: impl Into<f32>, max: impl Into<f32>, ) -> f32
SpringAxis(f32, f32, f32) 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: IOffsetModifier_OffsetLimits> IOffsetModifier_OffsetLimitsMethods for __T
Available on crate feature
root_motion-final_ik-offsetmodifier only.