pub trait ICharacterIKAim: IMonoBehaviour {
// Provided methods
fn cp(self) -> Character { ... }
fn set_cp(self, value: Character) { ... }
fn aim_ik(self) -> AimIK { ... }
fn set_aim_ik(self, value: AimIK) { ... }
fn anim_aim_dir(self) -> Vector3 { ... }
fn set_anim_aim_dir(self, value: Vector3) { ... }
fn current_aim_dir(self) -> Vector3 { ... }
fn set_current_aim_dir(self, value: Vector3) { ... }
}Provided Methods§
fn cp(self) -> Character
fn set_cp(self, value: Character)
fn aim_ik(self) -> AimIK
fn set_aim_ik(self, value: AimIK)
fn anim_aim_dir(self) -> Vector3
fn set_anim_aim_dir(self, value: Vector3)
fn current_aim_dir(self) -> Vector3
fn set_current_aim_dir(self, value: Vector3)
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.