pub trait ISolverManagerMethods: ISolverManager {
Show 15 methods
// Provided methods
fn disable(self) { ... }
fn initiate_solver(self) { ... }
fn update_solver(self) { ... }
fn fix_transforms(self) { ... }
fn on_disable(self) { ... }
fn start(self) { ... }
fn get_animate_physics(self) -> bool { ... }
fn initiate(self) { ... }
fn update(self) { ... }
fn find_animator_recursive(
self,
t: impl Into<Transform>,
find_in_children: impl Into<bool>,
) { ... }
fn get_is_animated(self) -> bool { ... }
fn fixed_update(self) { ... }
fn late_update(self) { ... }
fn update_solver_external(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn initiate_solver(self)
fn initiate_solver(self)
InitiateSolver() overload
Sourcefn update_solver(self)
fn update_solver(self)
UpdateSolver() overload
Sourcefn fix_transforms(self)
fn fix_transforms(self)
FixTransforms() overload
Sourcefn on_disable(self)
fn on_disable(self)
OnDisable() overload
Sourcefn get_animate_physics(self) -> bool
fn get_animate_physics(self) -> bool
get_animatePhysics() overload
Sourcefn find_animator_recursive(
self,
t: impl Into<Transform>,
find_in_children: impl Into<bool>,
)
fn find_animator_recursive( self, t: impl Into<Transform>, find_in_children: impl Into<bool>, )
FindAnimatorRecursive(crate::unity_engine::transform::Transform, bool) overload
Sourcefn get_is_animated(self) -> bool
fn get_is_animated(self) -> bool
get_isAnimated() overload
Sourcefn fixed_update(self)
fn fixed_update(self)
FixedUpdate() overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn update_solver_external(self)
fn update_solver_external(self)
UpdateSolverExternal() 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: ISolverManager> ISolverManagerMethods for __T
Available on crate feature
root_motion-solvermanager only.