pub trait IIKSolverFABRIKRootMethods: IIKSolverFABRIKRoot {
// Provided methods
fn is_valid(self) -> (bool, Il2CppString) { ... }
fn store_default_local_state(self) { ... }
fn fix_transforms(self) { ... }
fn on_initiate(self) { ... }
fn is_root(self, index: impl Into<i32>) -> bool { ... }
fn on_update(self) { ... }
fn get_points(self) -> Array<IKSolver_Point> { ... }
fn get_point(self, transform: impl Into<Transform>) -> IKSolver_Point { ... }
fn add_points_to_array(
self,
chain: impl Into<FABRIKChain>,
) -> Array<IKSolver_Point> { ... }
fn get_centroid(self) -> Vector3 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_valid(self) -> (bool, Il2CppString)
fn is_valid(self) -> (bool, Il2CppString)
IsValid(*mut::unity::Il2CppString) 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 on_initiate(self)
fn on_initiate(self)
OnInitiate() overload
Sourcefn get_points(self) -> Array<IKSolver_Point>
fn get_points(self) -> Array<IKSolver_Point>
GetPoints() overload
Sourcefn get_point(self, transform: impl Into<Transform>) -> IKSolver_Point
fn get_point(self, transform: impl Into<Transform>) -> IKSolver_Point
GetPoint(crate::unity_engine::transform::Transform) overload
Sourcefn add_points_to_array(
self,
chain: impl Into<FABRIKChain>,
) -> Array<IKSolver_Point>
fn add_points_to_array( self, chain: impl Into<FABRIKChain>, ) -> Array<IKSolver_Point>
AddPointsToArray(*mut::unity::Array<crate::root_motion::final_ik::iksolver::IKSolver_Point>, crate::root_motion::final_ik::fabrikchain::FABRIKChain) overload
Sourcefn get_centroid(self) -> Vector3
fn get_centroid(self) -> Vector3
GetCentroid() 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: IIKSolverFABRIKRoot> IIKSolverFABRIKRootMethods for __T
Available on crate feature
root_motion-final_ik-iksolverfabrikroot only.