dimforge / dimforge/bevy_rapier
`RapierDebugRenderPlugin` does not render colliders added as `custom_shape`.
- Dominant language
- Rust
- Stars
- 1.6k
- Forks
- 282
- PR merge metrics
- No merged PRs in 30d
Description
Basically the title.
This bundle:
```rust
.insert((
RigidBody::KinematicPositionBased,
KinematicCharacterController::default(),
Collider::capsule_z(0.3, 0.3),
GravityScale(0.0),
))
```
Will render a capsule in the debug view.
This, however:
```rust
.insert((
RigidBody::KinematicPositionBased,
KinematicCharacterController {
custom_shape: Some((
Collider::capsule_z(0.3, 0.3),
Vec3::new(0.0, 0.0, 0.0),
Rot::IDENTITY,
)),
..default()
},
GravityScale(0.0),
))
```
will not.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.