pub trait IGrounderMethods: IGrounder {
// Provided methods
fn reset_position(self) { ... }
fn get_initiated(self) -> bool { ... }
fn set_initiated(self, value: impl Into<bool>) { ... }
fn get_spine_offset_target(self) -> Vector3 { ... }
fn log_warning(self, message: impl Into<Il2CppString>) { ... }
fn get_leg_spine_bend_vector(self, leg: impl Into<Grounding_Leg>) -> Vector3 { ... }
fn get_leg_spine_tangent(self, leg: impl Into<Grounding_Leg>) -> Vector3 { ... }
fn open_user_manual(self) { ... }
fn open_script_reference(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn reset_position(self)
fn reset_position(self)
ResetPosition() overload
Sourcefn get_initiated(self) -> bool
fn get_initiated(self) -> bool
get_initiated() overload
Sourcefn set_initiated(self, value: impl Into<bool>)
fn set_initiated(self, value: impl Into<bool>)
set_initiated(bool) overload
Sourcefn get_spine_offset_target(self) -> Vector3
fn get_spine_offset_target(self) -> Vector3
GetSpineOffsetTarget() overload
Sourcefn log_warning(self, message: impl Into<Il2CppString>)
fn log_warning(self, message: impl Into<Il2CppString>)
LogWarning(::unity::Il2CppString) overload
Sourcefn get_leg_spine_bend_vector(self, leg: impl Into<Grounding_Leg>) -> Vector3
fn get_leg_spine_bend_vector(self, leg: impl Into<Grounding_Leg>) -> Vector3
GetLegSpineBendVector(crate::root_motion::final_ik::grounding::Grounding_Leg) overload
Sourcefn get_leg_spine_tangent(self, leg: impl Into<Grounding_Leg>) -> Vector3
fn get_leg_spine_tangent(self, leg: impl Into<Grounding_Leg>) -> Vector3
GetLegSpineTangent(crate::root_motion::final_ik::grounding::Grounding_Leg) overload
Sourcefn open_user_manual(self)
fn open_user_manual(self)
OpenUserManual() overload
Sourcefn open_script_reference(self)
fn open_script_reference(self)
OpenScriptReference() 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: IGrounder> IGrounderMethods for __T
Available on crate feature
root_motion-final_ik-grounder only.