aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan Stocks <cleancut@github.com>2022-02-24 15:35:35 -0700
committerNathan Stocks <cleancut@github.com>2022-02-24 15:35:35 -0700
commit4f9d21f4fdeb8772003617f64c2bdfda510d4e3f (patch)
treecd72193bbfabdfcdc4baf4cce7cf74fb7bd79670 /src
parent6d5f258af1a41aafb63f81d0114f1749f27b7c4d (diff)
downloadrapier-4f9d21f4fdeb8772003617f64c2bdfda510d4e3f.tar.gz
rapier-4f9d21f4fdeb8772003617f64c2bdfda510d4e3f.tar.bz2
rapier-4f9d21f4fdeb8772003617f64c2bdfda510d4e3f.zip
derive Debug for IntegrationParameters
Diffstat (limited to 'src')
-rw-r--r--src/dynamics/integration_parameters.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynamics/integration_parameters.rs b/src/dynamics/integration_parameters.rs
index c1d3e26..9e3f686 100644
--- a/src/dynamics/integration_parameters.rs
+++ b/src/dynamics/integration_parameters.rs
@@ -1,7 +1,7 @@
use crate::math::Real;
/// Parameters for a time-step of the physics engine.
-#[derive(Copy, Clone)]
+#[derive(Copy, Clone, Debug)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct IntegrationParameters {
/// The timestep length (default: `1.0 / 60.0`)