From 683baf6bf77cfb41227ea6ed4a42499d1e051cdf Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sat, 26 Nov 2022 17:45:14 +0100 Subject: Allow the PhysicsPipeline and CollisionPipeline to update the QueryPipeline incrementally --- src/dynamics/ccd/ccd_solver.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/dynamics/ccd') diff --git a/src/dynamics/ccd/ccd_solver.rs b/src/dynamics/ccd/ccd_solver.rs index 9e0ab8e..9b06a80 100644 --- a/src/dynamics/ccd/ccd_solver.rs +++ b/src/dynamics/ccd/ccd_solver.rs @@ -123,7 +123,6 @@ impl CCDSolver { ) -> Option { // Update the query pipeline. self.query_pipeline.update_with_mode( - islands, bodies, colliders, QueryPipelineMode::SweepTestWithPredictedPosition { dt }, @@ -245,7 +244,6 @@ impl CCDSolver { // Update the query pipeline. self.query_pipeline.update_with_mode( - islands, bodies, colliders, QueryPipelineMode::SweepTestWithNextPosition, -- cgit