Skip to main content

IIKSolverArmMethods

Trait IIKSolverArmMethods 

Source
pub trait IIKSolverArmMethods: IIKSolverArm {
    // Provided methods
    fn is_valid(self) -> (bool, Il2CppString) { ... }
    fn set_chain(
        self,
        chest: impl Into<Transform>,
        shoulder: impl Into<Transform>,
        upper_arm: impl Into<Transform>,
        forearm: impl Into<Transform>,
        hand: impl Into<Transform>,
        root: impl Into<Transform>,
    ) -> bool { ... }
    fn get_points(self) -> Array<IKSolver_Point> { ... }
    fn get_point(self, transform: impl Into<Transform>) -> IKSolver_Point { ... }
    fn store_default_local_state(self) { ... }
    fn fix_transforms(self) { ... }
    fn on_initiate(self) { ... }
    fn on_update(self) { ... }
    fn solve(self) { ... }
    fn read(self) { ... }
    fn write(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn is_valid(self) -> (bool, Il2CppString)

IsValid(*mut::unity::Il2CppString) overload

Source

fn set_chain( self, chest: impl Into<Transform>, shoulder: impl Into<Transform>, upper_arm: impl Into<Transform>, forearm: impl Into<Transform>, hand: impl Into<Transform>, root: impl Into<Transform>, ) -> bool

SetChain(crate::unity_engine::transform::Transform, crate::unity_engine::transform::Transform, crate::unity_engine::transform::Transform, crate::unity_engine::transform::Transform, crate::unity_engine::transform::Transform, crate::unity_engine::transform::Transform) overload

Source

fn get_points(self) -> Array<IKSolver_Point>

GetPoints() overload

Source

fn get_point(self, transform: impl Into<Transform>) -> IKSolver_Point

GetPoint(crate::unity_engine::transform::Transform) overload

Source

fn store_default_local_state(self)

StoreDefaultLocalState() overload

Source

fn fix_transforms(self)

FixTransforms() overload

Source

fn on_initiate(self)

OnInitiate() overload

Source

fn on_update(self)

OnUpdate() overload

Source

fn solve(self)

Solve() overload

Source

fn read(self)

Read() overload

Source

fn write(self)

Write() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IIKSolverArm> IIKSolverArmMethods for __T

Available on crate feature root_motion-final_ik-iksolverarm only.