bevy_spatial

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};

[derive(Component)]

struct TrackedByKDTree;

fn main() { App::new() .add_plugin(KDTreePlugin2D:: { ..default() }) // ... }

type NNTree = KDTreeAccess2D; // type alias for later

fn (tree: Res){ if let Some((pos, entity)) = tree.nearest_neighbour(Vec2::ZERO) { // pos: Vec3 // do something with the nearest entity here } } ```

For more details on usage see Examples

comaptible bey versions

| bevy | bevy_spatial | | ---- | ------------ | | 0.7 | 0.1.0 |

TODOs and Ideas