Skip to main content

IRagdollUtility_Rigidbone

Trait IRagdollUtility_Rigidbone 

Source
pub trait IRagdollUtility_Rigidbone: IObject {
Show 22 methods // Provided methods fn r(self) -> Rigidbody { ... } fn set_r(self, value: Rigidbody) { ... } fn t(self) -> Transform { ... } fn set_t(self, value: Transform) { ... } fn collider(self) -> Collider { ... } fn set_collider(self, value: Collider) { ... } fn joint(self) -> Joint { ... } fn set_joint(self, value: Joint) { ... } fn c(self) -> Rigidbody { ... } fn set_c(self, value: Rigidbody) { ... } fn update_anchor(self) -> bool { ... } fn set_update_anchor(self, value: bool) { ... } fn delta_position(self) -> Vector3 { ... } fn set_delta_position(self, value: Vector3) { ... } fn delta_rotation(self) -> Quaternion { ... } fn set_delta_rotation(self, value: Quaternion) { ... } fn delta_time(self) -> f32 { ... } fn set_delta_time(self, value: f32) { ... } fn last_position(self) -> Vector3 { ... } fn set_last_position(self, value: Vector3) { ... } fn last_rotation(self) -> Quaternion { ... } fn set_last_rotation(self, value: Quaternion) { ... }
}

Provided Methods§

Source

fn r(self) -> Rigidbody

Source

fn set_r(self, value: Rigidbody)

Source

fn t(self) -> Transform

Source

fn set_t(self, value: Transform)

Source

fn collider(self) -> Collider

Source

fn set_collider(self, value: Collider)

Source

fn joint(self) -> Joint

Source

fn set_joint(self, value: Joint)

Source

fn c(self) -> Rigidbody

Source

fn set_c(self, value: Rigidbody)

Source

fn update_anchor(self) -> bool

Source

fn set_update_anchor(self, value: bool)

Source

fn delta_position(self) -> Vector3

Source

fn set_delta_position(self, value: Vector3)

Source

fn delta_rotation(self) -> Quaternion

Source

fn set_delta_rotation(self, value: Quaternion)

Source

fn delta_time(self) -> f32

Source

fn set_delta_time(self, value: f32)

Source

fn last_position(self) -> Vector3

Source

fn set_last_position(self, value: Vector3)

Source

fn last_rotation(self) -> Quaternion

Source

fn set_last_rotation(self, value: Quaternion)

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§