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§
Sourcefn on_disable(self)
fn on_disable(self)
OnDisable() overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn store_default_pose(self)
fn store_default_pose(self)
StoreDefaultPose() 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: IEditorIK> IEditorIKMethods for __T
Available on crate feature
root_motion-final_ik-editorik only.