pub trait IIKMappingBoneMethods: IIKMappingBone {
// Provided methods
fn is_valid(self, solver: impl Into<IKSolver>) -> (bool, Il2CppString) { ... }
fn ctor(self) { ... }
fn ctor_2(self, bone: impl Into<Transform>) { ... }
fn store_default_local_state(self) { ... }
fn fix_transforms(self) { ... }
fn initiate(self, solver: impl Into<IKSolverFullBody>) { ... }
fn read_pose(self) { ... }
fn write_pose(self, solver_weight: impl Into<f32>) { ... }
}Provided Methods§
Sourcefn is_valid(self, solver: impl Into<IKSolver>) -> (bool, Il2CppString)
fn is_valid(self, solver: impl Into<IKSolver>) -> (bool, Il2CppString)
IsValid(crate::root_motion::final_ik::iksolver::IKSolver, *mut::unity::Il2CppString) overload
Sourcefn ctor_2(self, bone: impl Into<Transform>)
fn ctor_2(self, bone: impl Into<Transform>)
.ctor(crate::unity_engine::transform::Transform) overload
Sourcefn store_default_local_state(self)
fn store_default_local_state(self)
StoreDefaultLocalState() overload
Sourcefn fix_transforms(self)
fn fix_transforms(self)
FixTransforms() overload
Sourcefn initiate(self, solver: impl Into<IKSolverFullBody>)
fn initiate(self, solver: impl Into<IKSolverFullBody>)
Initiate(crate::root_motion::final_ik::iksolverfullbody::IKSolverFullBody) overload
Sourcefn write_pose(self, solver_weight: impl Into<f32>)
fn write_pose(self, solver_weight: impl Into<f32>)
WritePose(f32) 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: IIKMappingBone> IIKMappingBoneMethods for __T
Available on crate feature
root_motion-final_ik-ikmappingbone only.