A bevy plugin to track your entities in spatial indices and query them.
NOTE: You will need to enable at least one of the features.
Currently implemented features:
|Feature|Description|
|-|-|
|kdtree
|KD-Tree for spatial lookups which is fully recreated. This is ideal for cases where most entities are moving.|
|rstar
|R*-Tree for spatial lookups which is updated or recreated based on a threshold of changed entities. Ideal when most entities are static. |
Quickstart using the kdtree
feature:
```rust use bevy_spatial::{KDTreeAccess2D, KDTreePlugin2D, SpatialAccess};
struct TrackedByKDTree;
fn main() {
App::new()
.addplugin(KDTreePlugin2D::
type NNTree = KDTreeAccess2D
fn useneighbour(tree: Resquery.get(entity)
call
}
}
```
For more details on usage see Examples
| bevy | bevy_spatial | | ---- | ------------ | | 0.9 | 0.4.0 | | 0.8 | 0.3.0 | | 0.8 | 0.2.1 | | 0.7 | 0.1 |
wasm caveats: the rayon acceleration for kdtree is disabled on wasm, making it a bit slower.
documentation
Versions of the SpatialAccess functions which return Iterators instead of Vecs
a feature for linfa_nn
to use their abstractions over kdtree/balltree linear search