Skip to main content

IShoulderRotatorMethods

Trait IShoulderRotatorMethods 

Source
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§

Source

fn start(self)

Start() overload

Source

fn rotate_shoulders(self)

RotateShoulders() overload

Source

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

Source

fn get_parent_bone_map( self, chain: impl Into<FullBodyBipedChain>, ) -> IKMapping_BoneMap

GetParentBoneMap(crate::root_motion::final_ik::fullbodybipedchain::FullBodyBipedChain) overload

Source

fn on_destroy(self)

OnDestroy() 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: IShoulderRotator> IShoulderRotatorMethods for __T

Available on crate feature root_motion-final_ik-shoulderrotator only.