diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-05-31 12:47:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-31 12:47:12 +0200 |
| commit | de44fda4c3dc7cbd4d8c07df618b24d963fc4327 (patch) | |
| tree | 73258de799a6904c16d5f027dcd8d3c163387298 /src/pipeline | |
| parent | fb1bfc762c89cd8c5bd745a82998c1662a1bf196 (diff) | |
| parent | 10ca3474e67d53d3d1ec306dd2973d95043ba666 (diff) | |
| download | rapier-de44fda4c3dc7cbd4d8c07df618b24d963fc4327.tar.gz rapier-de44fda4c3dc7cbd4d8c07df618b24d963fc4327.tar.bz2 rapier-de44fda4c3dc7cbd4d8c07df618b24d963fc4327.zip | |
Merge pull request #335 from dimforge/optional-instant
Make the `instant` dependency optional, behind a `profiler` cargo feature
Diffstat (limited to 'src/pipeline')
| -rw-r--r-- | src/pipeline/physics_pipeline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipeline/physics_pipeline.rs b/src/pipeline/physics_pipeline.rs index 012f40f..19749be 100644 --- a/src/pipeline/physics_pipeline.rs +++ b/src/pipeline/physics_pipeline.rs @@ -54,7 +54,7 @@ impl PhysicsPipeline { /// Initializes a new physics pipeline. pub fn new() -> PhysicsPipeline { PhysicsPipeline { - counters: Counters::new(false), + counters: Counters::new(true), solvers: Vec::new(), manifold_indices: Vec::new(), joint_constraint_indices: Vec::new(), |
