pub trait IGrounderBipedIKMethods: IGrounderBipedIK {
// Provided methods
fn open_user_manual(self) { ... }
fn open_script_reference(self) { ... }
fn reset_position(self) { ... }
fn is_ready_to_initiate(self) -> bool { ... }
fn update(self) { ... }
fn initiate(self) { ... }
fn on_disable(self) { ... }
fn on_solver_update(self) { ... }
fn set_leg_ik(self, limb: impl Into<IKSolverLimb>, index: impl Into<i32>) { ... }
fn on_post_solver_update(self) { ... }
fn on_destroy(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn open_user_manual(self)
fn open_user_manual(self)
OpenUserManual() overload
Sourcefn open_script_reference(self)
fn open_script_reference(self)
OpenScriptReference() overload
Sourcefn reset_position(self)
fn reset_position(self)
ResetPosition() overload
Sourcefn is_ready_to_initiate(self) -> bool
fn is_ready_to_initiate(self) -> bool
IsReadyToInitiate() overload
Sourcefn on_disable(self)
fn on_disable(self)
OnDisable() overload
Sourcefn on_solver_update(self)
fn on_solver_update(self)
OnSolverUpdate() overload
Sourcefn set_leg_ik(self, limb: impl Into<IKSolverLimb>, index: impl Into<i32>)
fn set_leg_ik(self, limb: impl Into<IKSolverLimb>, index: impl Into<i32>)
SetLegIK(crate::root_motion::final_ik::iksolverlimb::IKSolverLimb, i32) overload
Sourcefn on_post_solver_update(self)
fn on_post_solver_update(self)
OnPostSolverUpdate() 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: IGrounderBipedIK> IGrounderBipedIKMethods for __T
Available on crate feature
root_motion-final_ik-grounderbipedik only.