pub trait IGrounderQuadrupedMethods: IGrounderQuadruped {
Show 18 methods
// Provided methods
fn open_user_manual(self) { ... }
fn open_script_reference(self) { ... }
fn reset_position(self) { ... }
fn is_ready_to_initiate(self) -> bool { ... }
fn is_ready_to_initiate_legs(
self,
ik_components: impl Into<Array<IK>>,
) -> bool { ... }
fn on_disable(self) { ... }
fn update(self) { ... }
fn initiate(self) { ... }
fn initiate_feet(
self,
ik_components: impl Into<Array<IK>>,
index_offset: impl Into<i32>,
) -> (Array<Transform>, Array<GrounderQuadruped_Foot>) { ... }
fn late_update(self) { ... }
fn root_rotation(self) { ... }
fn on_solver_update(self) { ... }
fn update_forefeet_root(self) { ... }
fn set_foot_ik(
self,
foot: impl Into<GrounderQuadruped_Foot>,
max_offset: impl Into<f32>,
) { ... }
fn on_post_solver_update(self) { ... }
fn on_destroy(self) { ... }
fn destroy_legs(self, ik_components: impl Into<Array<IK>>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn open_user_manual(self)
fn open_user_manual(self)
OpenUserManual() overload
Sourcefn open_script_reference(self)
fn open_script_reference(self)
OpenScriptReference() overload
Sourcefn reset_position(self)
fn reset_position(self)
ResetPosition() overload
Sourcefn is_ready_to_initiate(self) -> bool
fn is_ready_to_initiate(self) -> bool
IsReadyToInitiate() overload
Sourcefn is_ready_to_initiate_legs(self, ik_components: impl Into<Array<IK>>) -> bool
fn is_ready_to_initiate_legs(self, ik_components: impl Into<Array<IK>>) -> bool
IsReadyToInitiateLegs(::unity::Array<crate::root_motion::final_ik::ik::IK>) overload
Sourcefn on_disable(self)
fn on_disable(self)
OnDisable() overload
Sourcefn initiate_feet(
self,
ik_components: impl Into<Array<IK>>,
index_offset: impl Into<i32>,
) -> (Array<Transform>, Array<GrounderQuadruped_Foot>)
fn initiate_feet( self, ik_components: impl Into<Array<IK>>, index_offset: impl Into<i32>, ) -> (Array<Transform>, Array<GrounderQuadruped_Foot>)
InitiateFeet(::unity::Array<crate::root_motion::final_ik::ik::IK>, *mut::unity::Array<crate::root_motion::final_ik::grounderquadruped::GrounderQuadruped_Foot>, i32) overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn root_rotation(self)
fn root_rotation(self)
RootRotation() overload
Sourcefn on_solver_update(self)
fn on_solver_update(self)
OnSolverUpdate() overload
Sourcefn update_forefeet_root(self)
fn update_forefeet_root(self)
UpdateForefeetRoot() overload
Sourcefn set_foot_ik(
self,
foot: impl Into<GrounderQuadruped_Foot>,
max_offset: impl Into<f32>,
)
fn set_foot_ik( self, foot: impl Into<GrounderQuadruped_Foot>, max_offset: impl Into<f32>, )
SetFootIK(crate::root_motion::final_ik::grounderquadruped::GrounderQuadruped_Foot, f32) overload
Sourcefn on_post_solver_update(self)
fn on_post_solver_update(self)
OnPostSolverUpdate() overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn destroy_legs(self, ik_components: impl Into<Array<IK>>)
fn destroy_legs(self, ik_components: impl Into<Array<IK>>)
DestroyLegs(::unity::Array<crate::root_motion::final_ik::ik::IK>) 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: IGrounderQuadruped> IGrounderQuadrupedMethods for __T
root_motion-final_ik-grounderquadruped only.