pub trait IShoulderRotatorMethods: IShoulderRotator {
// Provided methods
fn start(self) { ... }
fn rotate_shoulders(self) { ... }
fn rotate_shoulder(
self,
chain: impl Into<FullBodyBipedChain>,
weight: impl Into<f32>,
offset: impl Into<f32>,
) { ... }
fn get_parent_bone_map(
self,
chain: impl Into<FullBodyBipedChain>,
) -> IKMapping_BoneMap { ... }
fn on_destroy(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn rotate_shoulders(self)
fn rotate_shoulders(self)
RotateShoulders() overload
Sourcefn rotate_shoulder(
self,
chain: impl Into<FullBodyBipedChain>,
weight: impl Into<f32>,
offset: impl Into<f32>,
)
fn rotate_shoulder( self, chain: impl Into<FullBodyBipedChain>, weight: impl Into<f32>, offset: impl Into<f32>, )
RotateShoulder(crate::root_motion::final_ik::fullbodybipedchain::FullBodyBipedChain, f32, f32) overload
Sourcefn get_parent_bone_map(
self,
chain: impl Into<FullBodyBipedChain>,
) -> IKMapping_BoneMap
fn get_parent_bone_map( self, chain: impl Into<FullBodyBipedChain>, ) -> IKMapping_BoneMap
GetParentBoneMap(crate::root_motion::final_ik::fullbodybipedchain::FullBodyBipedChain) overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() 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: IShoulderRotator> IShoulderRotatorMethods for __T
Available on crate feature
root_motion-final_ik-shoulderrotator only.