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.
24 lines
325 B
TOML
24 lines
325 B
TOML
[package]
|
|
name = "bevy-testing"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bevy = "0.14.0"
|
|
bevy_spatial = "0.9.0"
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
# codegen-units = 1
|
|
lto = "thin"
|
|
|
|
[profile.wasm-release]
|
|
inherits = "release"
|
|
opt-level = "z"
|
|
strip = "debuginfo"
|