from the `distance2d` example, colors the elements in a radius around the mouse.
A bevy plugin to track your entities in spatial indexes and query them.
Currently implemented features:
|Feature|Description|
|-|-|
|kdtree
|KD-Tree for spatial lookups which is fully recreated. This is ideal for cases where EVERYTHING is moving.|
|rstar
|R*-Tree for spatial lookups which is updated or recreated based on a threshold of changes. Ideal when most entities are static. |
Quickstart using the kdtree
feature:
```rust use bevy_spatial::{KDTreeAccess2D, KDTreePlugin2D, SpatialAccess};
struct TrackedByKDTree;
fn main() {
App::new()
.add_plugin(KDTreePlugin2D::
type NNTree = KDTreeAccess2D
fn (tree: Res
For more details on usage see Examples
| bevy | bevy_spatial | | ---- | ------------ | | 0.7 | 0.1.0 |
documentation
a feature for linfa_nn
to use their abstractions over kdtree/balltree linear search