pub trait IRagdollUtilityMethods: IRagdollUtility {
Show 18 methods
// Provided methods
fn enable_ragdoll(self) { ... }
fn disable_ragdoll(self) { ... }
fn start(self) { ... }
fn disable_ragdoll_smooth(self) -> IEnumerator { ... }
fn update(self) { ... }
fn fixed_update(self) { ... }
fn late_update(self) { ... }
fn after_last_ik(self) { ... }
fn after_animation(self) { ... }
fn on_final_pose(self) { ... }
fn ragdoll_enabler(self) { ... }
fn get_is_ragdoll(self) -> bool { ... }
fn record_velocities(self) { ... }
fn get_ik_used(self) -> bool { ... }
fn store_local_state(self) { ... }
fn fix_transforms(self, weight: impl Into<f32>) { ... }
fn on_destroy(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn enable_ragdoll(self)
fn enable_ragdoll(self)
EnableRagdoll() overload
Sourcefn disable_ragdoll(self)
fn disable_ragdoll(self)
DisableRagdoll() overload
Sourcefn disable_ragdoll_smooth(self) -> IEnumerator
fn disable_ragdoll_smooth(self) -> IEnumerator
DisableRagdollSmooth() overload
Sourcefn fixed_update(self)
fn fixed_update(self)
FixedUpdate() overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn after_last_ik(self)
fn after_last_ik(self)
AfterLastIK() overload
Sourcefn after_animation(self)
fn after_animation(self)
AfterAnimation() overload
Sourcefn on_final_pose(self)
fn on_final_pose(self)
OnFinalPose() overload
Sourcefn ragdoll_enabler(self)
fn ragdoll_enabler(self)
RagdollEnabler() overload
Sourcefn get_is_ragdoll(self) -> bool
fn get_is_ragdoll(self) -> bool
get_isRagdoll() overload
Sourcefn record_velocities(self)
fn record_velocities(self)
RecordVelocities() overload
Sourcefn get_ik_used(self) -> bool
fn get_ik_used(self) -> bool
get_ikUsed() overload
Sourcefn store_local_state(self)
fn store_local_state(self)
StoreLocalState() overload
Sourcefn fix_transforms(self, weight: impl Into<f32>)
fn fix_transforms(self, weight: impl Into<f32>)
FixTransforms(f32) overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() 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: IRagdollUtility> IRagdollUtilityMethods for __T
Available on crate feature
root_motion-final_ik-ragdollutility only.