pub trait IBipedLimbOrientationsMethods: IBipedLimbOrientations {
// Provided method
fn ctor(
self,
left_arm: impl Into<BipedLimbOrientations_LimbOrientation>,
right_arm: impl Into<BipedLimbOrientations_LimbOrientation>,
left_leg: impl Into<BipedLimbOrientations_LimbOrientation>,
right_leg: impl Into<BipedLimbOrientations_LimbOrientation>,
) { ... }
}Provided Methods§
Sourcefn ctor(
self,
left_arm: impl Into<BipedLimbOrientations_LimbOrientation>,
right_arm: impl Into<BipedLimbOrientations_LimbOrientation>,
left_leg: impl Into<BipedLimbOrientations_LimbOrientation>,
right_leg: impl Into<BipedLimbOrientations_LimbOrientation>,
)
fn ctor( self, left_arm: impl Into<BipedLimbOrientations_LimbOrientation>, right_arm: impl Into<BipedLimbOrientations_LimbOrientation>, left_leg: impl Into<BipedLimbOrientations_LimbOrientation>, right_leg: impl Into<BipedLimbOrientations_LimbOrientation>, )
.ctor(crate::root_motion::bipedlimborientations::BipedLimbOrientations_LimbOrientation, crate::root_motion::bipedlimborientations::BipedLimbOrientations_LimbOrientation, crate::root_motion::bipedlimborientations::BipedLimbOrientations_LimbOrientation, crate::root_motion::bipedlimborientations::BipedLimbOrientations_LimbOrientation) 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: IBipedLimbOrientations> IBipedLimbOrientationsMethods for __T
Available on crate feature
root_motion-bipedlimborientations only.