Skip to main content

IIKExecutionOrderMethods

Trait IIKExecutionOrderMethods 

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

Source

fn get_animate_physics(self) -> bool

get_animatePhysics() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn fixed_update(self)

FixedUpdate() overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn fix_transforms(self)

FixTransforms() 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: IIKExecutionOrder> IIKExecutionOrderMethods for __T

Available on crate feature root_motion-final_ik-ikexecutionorder only.