pub trait IRotationLimitAngleMethods: IRotationLimitAngle {
// Provided methods
fn open_user_manual(self) { ... }
fn open_script_reference(self) { ... }
fn support_group(self) { ... }
fn as_thread(self) { ... }
fn limit_rotation(self, rotation: impl Into<Quaternion>) -> Quaternion { ... }
fn limit_swing(self, rotation: impl Into<Quaternion>) -> Quaternion { ... }
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 support_group(self)
fn support_group(self)
SupportGroup() overload
Sourcefn limit_rotation(self, rotation: impl Into<Quaternion>) -> Quaternion
fn limit_rotation(self, rotation: impl Into<Quaternion>) -> Quaternion
LimitRotation(crate::unity_engine::quaternion::Quaternion) overload
Sourcefn limit_swing(self, rotation: impl Into<Quaternion>) -> Quaternion
fn limit_swing(self, rotation: impl Into<Quaternion>) -> Quaternion
LimitSwing(crate::unity_engine::quaternion::Quaternion) 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: IRotationLimitAngle> IRotationLimitAngleMethods for __T
Available on crate feature
root_motion-final_ik-rotationlimitangle only.