pub trait IAimControllerMethods: IAimController {
// Provided methods
fn start(self) { ... }
fn late_update(self) { ... }
fn get_pivot(self) -> Vector3 { ... }
fn apply_min_distance(self) { ... }
fn root_rotation(self) { ... }
fn turn_to_target(self) -> IEnumerator { ... }
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
Sourcefn turn_to_target(self) -> IEnumerator
fn turn_to_target(self) -> IEnumerator
TurnToTarget() 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: IAimController> IAimControllerMethods for __T
Available on crate feature
root_motion-final_ik-aimcontroller only.