From 52bbcc79fe1989f391e17b8c240a886bd8529d1f Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Tue, 22 Sep 2020 18:46:57 +0200 Subject: Query pipeline: aggressive workaround until we properly support collider addition/removal. --- src/pipeline/query_pipeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/pipeline/query_pipeline.rs b/src/pipeline/query_pipeline.rs index 304ba18..666eb58 100644 --- a/src/pipeline/query_pipeline.rs +++ b/src/pipeline/query_pipeline.rs @@ -33,7 +33,7 @@ impl QueryPipeline { if !self.tree_built { self.quadtree .clear_and_rebuild(colliders, self.dilation_factor); - self.tree_built = true; + // self.tree_built = true; // FIXME: uncomment this once we handle insertion/removals properly. return; } -- cgit