aboutsummaryrefslogtreecommitdiff
path: root/src/geometry/collider.rs
diff options
context:
space:
mode:
authorwhatf0xx <hfox022@gmail.com>2024-02-11 16:28:58 +0100
committerwhatf0xx <hfox022@gmail.com>2024-02-11 16:28:58 +0100
commitfe336b9b98d5825544ad3a153a84cb59dc9171c6 (patch)
treeb4f715ca7fdbec4fd0af4499ccb37b0b2318d4db /src/geometry/collider.rs
parentda92e5c2837b27433286cf0dd9d887fd44dda254 (diff)
downloadrapier-fe336b9b98d5825544ad3a153a84cb59dc9171c6.tar.gz
rapier-fe336b9b98d5825544ad3a153a84cb59dc9171c6.tar.bz2
rapier-fe336b9b98d5825544ad3a153a84cb59dc9171c6.zip
derived Debug for ColliderBuilder
Diffstat (limited to 'src/geometry/collider.rs')
-rw-r--r--src/geometry/collider.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geometry/collider.rs b/src/geometry/collider.rs
index 2a31afa..261de46 100644
--- a/src/geometry/collider.rs
+++ b/src/geometry/collider.rs
@@ -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 {