pub trait ITQMethods: ITQ {
// Provided method
fn ctor(
self,
translation: impl Into<Vector3>,
rotation: impl Into<Quaternion>,
) { ... }
}Provided Methods§
Sourcefn ctor(self, translation: impl Into<Vector3>, rotation: impl Into<Quaternion>)
fn ctor(self, translation: impl Into<Vector3>, rotation: impl Into<Quaternion>)
.ctor(crate::unity_engine::vector3::Vector3, 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: ITQ> ITQMethods for __T
Available on crate feature
root_motion-tq only.