Skip to main content

IRagdollUtilityMethods

Trait IRagdollUtilityMethods 

Source
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§

Source

fn enable_ragdoll(self)

EnableRagdoll() overload

Source

fn disable_ragdoll(self)

DisableRagdoll() overload

Source

fn start(self)

Start() overload

Source

fn disable_ragdoll_smooth(self) -> IEnumerator

DisableRagdollSmooth() overload

Source

fn update(self)

Update() overload

Source

fn fixed_update(self)

FixedUpdate() overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn after_last_ik(self)

AfterLastIK() overload

Source

fn after_animation(self)

AfterAnimation() overload

Source

fn on_final_pose(self)

OnFinalPose() overload

Source

fn ragdoll_enabler(self)

RagdollEnabler() overload

Source

fn get_is_ragdoll(self) -> bool

get_isRagdoll() overload

Source

fn record_velocities(self)

RecordVelocities() overload

Source

fn get_ik_used(self) -> bool

get_ikUsed() overload

Source

fn store_local_state(self)

StoreLocalState() overload

Source

fn fix_transforms(self, weight: impl Into<f32>)

FixTransforms(f32) overload

Source

fn on_destroy(self)

OnDestroy() 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: IRagdollUtility> IRagdollUtilityMethods for __T

Available on crate feature root_motion-final_ik-ragdollutility only.