From b243e0a7583713626307c1ade1f2b35dac8e018d Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Tue, 25 Oct 2022 18:10:24 +0200 Subject: Update to latest version of parry --- src/pipeline/query_pipeline.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/pipeline/query_pipeline.rs b/src/pipeline/query_pipeline.rs index e2ea05f..e763dea 100644 --- a/src/pipeline/query_pipeline.rs +++ b/src/pipeline/query_pipeline.rs @@ -12,6 +12,7 @@ use parry::query::details::{ RayCompositeShapeToiAndNormalBestFirstVisitor, RayCompositeShapeToiBestFirstVisitor, TOICompositeShapeShapeBestFirstVisitor, }; +use parry::utils::DefaultStorage; use parry::query::visitors::{ BoundingVolumeIntersectionsVisitor, PointIntersectionsVisitor, RayIntersectionsVisitor, }; @@ -245,6 +246,7 @@ pub enum QueryPipelineMode { impl<'a> TypedSimdCompositeShape for QueryPipelineAsCompositeShape<'a> { type PartShape = dyn Shape; type PartId = ColliderHandle; + type QBVHStorage = DefaultStorage; fn map_typed_part_at( &self, -- cgit