Skip to main content

IIKExecutionOrder

Trait IIKExecutionOrder 

Source
pub trait IIKExecutionOrder: IMonoBehaviour {
    // Provided methods
    fn ik_components(self) -> Array<IK> { ... }
    fn set_ik_components(self, value: Array<IK>) { ... }
    fn animator(self) -> Animator { ... }
    fn set_animator(self, value: Animator) { ... }
    fn fixed_frame(self) -> bool { ... }
    fn set_fixed_frame(self, value: bool) { ... }
}

Provided Methods§

Source

fn ik_components(self) -> Array<IK>

Source

fn set_ik_components(self, value: Array<IK>)

Source

fn animator(self) -> Animator

Source

fn set_animator(self, value: Animator)

Source

fn fixed_frame(self) -> bool

Source

fn set_fixed_frame(self, value: bool)

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§