aboutsummaryrefslogtreecommitdiff
path: root/src/pipeline/physics_pipeline.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/pipeline/physics_pipeline.rs')
-rw-r--r--src/pipeline/physics_pipeline.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/pipeline/physics_pipeline.rs b/src/pipeline/physics_pipeline.rs
index ccc60e0..e56f8e0 100644
--- a/src/pipeline/physics_pipeline.rs
+++ b/src/pipeline/physics_pipeline.rs
@@ -118,13 +118,7 @@ impl PhysicsPipeline {
contact_pair_filter,
events,
);
- narrow_phase.compute_intersections(
- integration_parameters.prediction_distance,
- bodies,
- colliders,
- proximity_pair_filter,
- events,
- );
+ narrow_phase.compute_intersections(bodies, colliders, proximity_pair_filter, events);
// println!("Compute contact time: {}", instant::now() - t);
self.counters.stages.island_construction_time.start();