Skip to main content

IEditorIKMethods

Trait IEditorIKMethods 

Source
pub trait IEditorIKMethods: IEditorIK {
    // Provided methods
    fn get_ik(self) -> IK { ... }
    fn set_ik(self, value: impl Into<IK>) { ... }
    fn on_enable(self) { ... }
    fn on_disable(self) { ... }
    fn on_destroy(self) { ... }
    fn store_default_pose(self) { ... }
    fn initiate(self) -> bool { ... }
    fn update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_ik(self) -> IK

get_ik() overload

Source

fn set_ik(self, value: impl Into<IK>)

set_ik(crate::root_motion::final_ik::ik::IK) overload

Source

fn on_enable(self)

OnEnable() overload

Source

fn on_disable(self)

OnDisable() overload

Source

fn on_destroy(self)

OnDestroy() overload

Source

fn store_default_pose(self)

StoreDefaultPose() overload

Source

fn initiate(self) -> bool

Initiate() overload

Source

fn update(self)

Update() 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: IEditorIK> IEditorIKMethods for __T

Available on crate feature root_motion-final_ik-editorik only.