Skip to content

Commit

Permalink
derived Debug for ColliderBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
whatf0xx committed Feb 11, 2024
1 parent da92e5c commit fe336b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/geometry/collider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ impl Collider {
}

/// A structure responsible for building a new collider.
#[derive(Clone)]
#[derive(Clone, Debug)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
#[must_use = "Builder functions return the updated builder"]
pub struct ColliderBuilder {
Expand Down
2 changes: 1 addition & 1 deletion src/geometry/collider_components.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl Default for ColliderBroadPhaseData {
/// The shape of a collider.
pub type ColliderShape = SharedShape;

#[derive(Clone, PartialEq)]
#[derive(Clone, PartialEq, Debug)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
/// The mass-properties of a collider.
pub enum ColliderMassProps {
Expand Down

0 comments on commit fe336b9

Please sign in to comment.