dimforge / rapier

2D and 3D physics engines focused on performance.
https://rapier.rs
Apache License 2.0
3.77k stars 235 forks source link

`ColliderBuilder` does not implement `Debug` #577

Open snyball opened 5 months ago

snyball commented 5 months ago

The ColliderBuilder struct does not implement Debug, while it is implemented for RigidBodyBuilder, this seems like an oversight.

sebcrozet commented 5 months ago

ColliderBuilder currently does not implement Debug mainly because it contains a trait-object for its shape. We could consider implementing Debug for SharedShape in parry by matching on know objects types though.