Skip to main content

ISolverManager

Trait ISolverManager 

Source
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§

Source

fn fix_transforms_field(self) -> bool

Source

fn set_fix_transforms_field(self, value: bool)

Source

fn animator(self) -> Animator

Source

fn set_animator(self, value: Animator)

Source

fn legacy(self) -> Animation

Source

fn set_legacy(self, value: Animation)

Source

fn update_frame(self) -> bool

Source

fn set_update_frame(self, value: bool)

Source

fn component_initiated(self) -> bool

Source

fn set_component_initiated(self, value: bool)

Source

fn skip_solver_update(self) -> bool

Source

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.

Implementors§