pub trait IInteractionLookAtMethods: IInteractionLookAt {
// Provided methods
fn look(self, target: impl Into<Transform>, time: impl Into<f32>) { ... }
fn on_fix_transforms(self) { ... }
fn update(self) { ... }
fn solve_spine(self) { ... }
fn solve_head(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn look(self, target: impl Into<Transform>, time: impl Into<f32>)
fn look(self, target: impl Into<Transform>, time: impl Into<f32>)
Look(crate::unity_engine::transform::Transform, f32) overload
Sourcefn on_fix_transforms(self)
fn on_fix_transforms(self)
OnFixTransforms() overload
Sourcefn solve_spine(self)
fn solve_spine(self)
SolveSpine() overload
Sourcefn solve_head(self)
fn solve_head(self)
SolveHead() 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: IInteractionLookAt> IInteractionLookAtMethods for __T
Available on crate feature
root_motion-final_ik-interactionlookat only.