Added bevy_spatial for boid interactions

I'm finally starting on the actual Boids flocking algorithm parts.
I don't want to iterate over all the things, and Bevy doesn't seem to
have fast collision testing yet, so I've reached for bevy_spatial to
track my Boids.
This commit is contained in:
2024-07-09 11:56:52 -05:00
parent ecbfea04be
commit 3a680a4ea2
3 changed files with 119 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ edition = "2021"
[dependencies]
bevy = "0.14.0"
bevy_spatial = "0.9.0"
[profile.dev]
opt-level = 1