Merge pull request #292 from CleanCut/master

Derive Debug for IntegrationParameters
This commit is contained in:
Sébastien Crozet
2022-03-06 11:04:24 +01:00
committed by GitHub

View File

@@ -1,7 +1,7 @@
use crate::math::Real; use crate::math::Real;
/// Parameters for a time-step of the physics engine. /// Parameters for a time-step of the physics engine.
#[derive(Copy, Clone)] #[derive(Copy, Clone, Debug)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))] #[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct IntegrationParameters { pub struct IntegrationParameters {
/// The timestep length (default: `1.0 / 60.0`) /// The timestep length (default: `1.0 / 60.0`)