pub trait ISolverManager: IMonoBehaviour {
// Provided methods
fn fix_transforms_field(self) -> bool { ... }
fn set_fix_transforms_field(self, value: bool) { ... }
fn animator(self) -> Animator { ... }
fn set_animator(self, value: Animator) { ... }
fn legacy(self) -> Animation { ... }
fn set_legacy(self, value: Animation) { ... }
fn update_frame(self) -> bool { ... }
fn set_update_frame(self, value: bool) { ... }
fn component_initiated(self) -> bool { ... }
fn set_component_initiated(self, value: bool) { ... }
fn skip_solver_update(self) -> bool { ... }
fn set_skip_solver_update(self, value: bool) { ... }
}Provided Methods§
fn fix_transforms_field(self) -> bool
fn set_fix_transforms_field(self, value: bool)
fn animator(self) -> Animator
fn set_animator(self, value: Animator)
fn legacy(self) -> Animation
fn set_legacy(self, value: Animation)
fn update_frame(self) -> bool
fn set_update_frame(self, value: bool)
fn component_initiated(self) -> bool
fn set_component_initiated(self, value: bool)
fn skip_solver_update(self) -> bool
fn set_skip_solver_update(self, value: bool)
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.