pub trait CapsuleController: Class<PxCapsuleController> + Controller {
    fn get_climbing_mode(&self) -> CapsuleClimbingMode { ... }
    fn get_height(&self) -> f32 { ... }
    fn get_radius(&self) -> f32 { ... }
    fn set_climbing_mode(&mut self, mode: CapsuleClimbingMode) -> bool { ... }
    fn set_height(&mut self, height: f32) -> bool { ... }
    fn set_radius(&mut self, radius: f32) -> bool { ... }
}

Provided Methods

Get the climbing mode of the capsule controller.

Get the height of the capsule.

Get the radius of the capsule.

Set the climbing mode of the capsule controller.

Set the height of the capsule.

Set the radius of the capsule.

Implementors