Addon for Godot that adds 2D / 3D boids (flocking).
Go to file
2024-08-29 16:34:03 +03:00
addons/boids feat: add some docs 2024-08-29 15:49:23 +03:00
examples/boids/2d feat: add some docs 2024-08-29 15:49:23 +03:00
resources chore: git lfs 2024-08-19 17:19:45 +03:00
rust feat: add 3d nodes 2024-08-29 16:34:03 +03:00
.gitattributes chore: init 2024-08-19 16:53:54 +03:00
.gitignore feat: yay rust rewrite its faster 2024-08-29 04:51:21 +03:00
export_presets.cfg feat: yay rust rewrite its faster 2024-08-29 04:51:21 +03:00
LICENSE.txt chore: init 2024-08-19 16:53:54 +03:00
project.godot feat: yay rust rewrite its faster 2024-08-29 04:51:21 +03:00
README.md chore: init 2024-08-19 16:53:54 +03:00

boid_2d

Addon for Godot that adds a 2D node for simulating boids / flocking.

boids

Usage

Clone the repository and copy over the addon. Make an inherited scene from boid.tscn, add a Sprite2D (or whatever visuals you have) and instantiate and spawn many. Checkout the examples on how to use it more.

TODO

  • fix weird spasming behaviour
  • improve collision (dont only bounce, maybe follow wall in some conditions etc.)
  • improve performance (BoidManager autoload that tracks and manages every boid?)