Skip to main content

IShoulderRotator

Trait IShoulderRotator 

Source
pub trait IShoulderRotator: IMonoBehaviour {
    // Provided methods
    fn weight(self) -> f32 { ... }
    fn set_weight(self, value: f32) { ... }
    fn offset(self) -> f32 { ... }
    fn set_offset(self, value: f32) { ... }
    fn ik(self) -> FullBodyBipedIK { ... }
    fn set_ik(self, value: FullBodyBipedIK) { ... }
    fn skip(self) -> bool { ... }
    fn set_skip(self, value: bool) { ... }
}

Provided Methods§

Source

fn weight(self) -> f32

Source

fn set_weight(self, value: f32)

Source

fn offset(self) -> f32

Source

fn set_offset(self, value: f32)

Source

fn ik(self) -> FullBodyBipedIK

Source

fn set_ik(self, value: FullBodyBipedIK)

Source

fn skip(self) -> bool

Source

fn set_skip(self, value: bool)

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§