pub trait IVRIKRootControllerMethods: IVRIKRootController {
// Provided methods
fn get_pelvis_target_right(self) -> Vector3 { ... }
fn set_pelvis_target_right(self, value: impl Into<Vector3>) { ... }
fn awake(self) { ... }
fn calibrate(self) { ... }
fn calibrate_2(self, data: impl Into<VRIKCalibrator_CalibrationData>) { ... }
fn on_pre_update(self) { ... }
fn on_destroy(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_pelvis_target_right(self) -> Vector3
fn get_pelvis_target_right(self) -> Vector3
get_pelvisTargetRight() overload
Sourcefn set_pelvis_target_right(self, value: impl Into<Vector3>)
fn set_pelvis_target_right(self, value: impl Into<Vector3>)
set_pelvisTargetRight(crate::unity_engine::vector3::Vector3) overload
Sourcefn calibrate_2(self, data: impl Into<VRIKCalibrator_CalibrationData>)
fn calibrate_2(self, data: impl Into<VRIKCalibrator_CalibrationData>)
Calibrate(crate::root_motion::final_ik::vrikcalibrator::VRIKCalibrator_CalibrationData) overload
Sourcefn on_pre_update(self)
fn on_pre_update(self)
OnPreUpdate() overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() 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: IVRIKRootController> IVRIKRootControllerMethods for __T
Available on crate feature
root_motion-final_ik-vrikrootcontroller only.