diff options
| author | Crozet Sébastien <developer@crozet.re> | 2020-09-22 18:46:57 +0200 |
|---|---|---|
| committer | Crozet Sébastien <developer@crozet.re> | 2020-09-28 15:27:25 +0200 |
| commit | 52bbcc79fe1989f391e17b8c240a886bd8529d1f (patch) | |
| tree | d69178f0384c1ca6a51677f3d1272585acc8dfe9 /src | |
| parent | b39887a121305a36852604bf7c2726c1649934a1 (diff) | |
| download | rapier-52bbcc79fe1989f391e17b8c240a886bd8529d1f.tar.gz rapier-52bbcc79fe1989f391e17b8c240a886bd8529d1f.tar.bz2 rapier-52bbcc79fe1989f391e17b8c240a886bd8529d1f.zip | |
Query pipeline: aggressive workaround until we properly support collider addition/removal.
Diffstat (limited to 'src')
| -rw-r--r-- | src/pipeline/query_pipeline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
