pub trait IFABRIKChainMethods: IFABRIKChain {
// Provided methods
fn is_valid(self) -> (bool, Il2CppString) { ... }
fn initiate(self) { ... }
fn stage1(self, chain: impl Into<Array<FABRIKChain>>) { ... }
fn stage2(
self,
root_position: impl Into<Vector3>,
chain: impl Into<Array<FABRIKChain>>,
) { ... }
fn get_centroid(self, chain: impl Into<Array<FABRIKChain>>) -> Vector3 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_valid(self) -> (bool, Il2CppString)
fn is_valid(self) -> (bool, Il2CppString)
IsValid(*mut::unity::Il2CppString) overload
Sourcefn stage1(self, chain: impl Into<Array<FABRIKChain>>)
fn stage1(self, chain: impl Into<Array<FABRIKChain>>)
Stage1(::unity::Array<crate::root_motion::final_ik::fabrikchain::FABRIKChain>) overload
Sourcefn stage2(
self,
root_position: impl Into<Vector3>,
chain: impl Into<Array<FABRIKChain>>,
)
fn stage2( self, root_position: impl Into<Vector3>, chain: impl Into<Array<FABRIKChain>>, )
Stage2(crate::unity_engine::vector3::Vector3, ::unity::Array<crate::root_motion::final_ik::fabrikchain::FABRIKChain>) overload
Sourcefn get_centroid(self, chain: impl Into<Array<FABRIKChain>>) -> Vector3
fn get_centroid(self, chain: impl Into<Array<FABRIKChain>>) -> Vector3
GetCentroid(::unity::Array<crate::root_motion::final_ik::fabrikchain::FABRIKChain>) 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: IFABRIKChain> IFABRIKChainMethods for __T
Available on crate feature
root_motion-final_ik-fabrikchain only.