pub trait IIKExecutionOrderMethods: IIKExecutionOrder {
// Provided methods
fn get_animate_physics(self) -> bool { ... }
fn start(self) { ... }
fn update(self) { ... }
fn fixed_update(self) { ... }
fn late_update(self) { ... }
fn fix_transforms(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_animate_physics(self) -> bool
fn get_animate_physics(self) -> bool
get_animatePhysics() overload
Sourcefn fixed_update(self)
fn fixed_update(self)
FixedUpdate() overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn fix_transforms(self)
fn fix_transforms(self)
FixTransforms() 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: IIKExecutionOrder> IIKExecutionOrderMethods for __T
Available on crate feature
root_motion-final_ik-ikexecutionorder only.