pub trait ILookAtControllerMethods: ILookAtController {
// Provided methods
fn start(self) { ... }
fn late_update(self) { ... }
fn get_pivot(self) -> Vector3 { ... }
fn apply_min_distance(self) { ... }
fn root_rotation(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn apply_min_distance(self)
fn apply_min_distance(self)
ApplyMinDistance() overload
Sourcefn root_rotation(self)
fn root_rotation(self)
RootRotation() 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: ILookAtController> ILookAtControllerMethods for __T
Available on crate feature
root_motion-final_ik-lookatcontroller only.