pub trait IAimPoserMethods: IAimPoser {
// Provided methods
fn get_pose(self, local_direction: impl Into<Vector3>) -> AimPoser_Pose { ... }
fn set_pose_active(self, pose: impl Into<AimPoser_Pose>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_pose(self, local_direction: impl Into<Vector3>) -> AimPoser_Pose
fn get_pose(self, local_direction: impl Into<Vector3>) -> AimPoser_Pose
GetPose(crate::unity_engine::vector3::Vector3) overload
Sourcefn set_pose_active(self, pose: impl Into<AimPoser_Pose>)
fn set_pose_active(self, pose: impl Into<AimPoser_Pose>)
SetPoseActive(crate::root_motion::final_ik::aimposer::AimPoser_Pose) 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: IAimPoser> IAimPoserMethods for __T
Available on crate feature
root_motion-final_ik-aimposer only.