I want to create a flocking algorithm system identical to boids but I have the problems here, I’ll refer to my flocking objects or “birds” as subjects:
Flocks don’t have a random move pattern, they will always move in the same direction even when I tried putting something small but random to their velocity.
Sometimes, the subjects will suddenly move very fast.
Not sure if my way of moving subjects randomly is a good way but I was using perlin noise.
Sometimes buggy
Nevertheless, they do flock but flocks of course don’t move in the same direction constantly or bug sometimes.
I used spheres and body velocity to give these spheres life as flocking birds. I calculated the boids’ alignments, cohesions, and separation parts by using velocity/position etc.
I also would like to know how I can make them randomly swim around when not in a flock? The gif below shows smoothly random movements but mines move in a straight line, I would like to know how to recreate something that smooth.
Flocks movement is determined by the flock central position. This is the cohesion rule of the Boids simulation. If they are all moving strangely, then you applied Rule 3 incorrectly. Mind posting the tutorial you used?
I have now updated the post with the file for you to take a look at. I probably messed it up with all these random variables and stuff but not sure. Also, make sure you have a Baseplate in your game since I used that as a way to base off where to spawn boids.
It spawns Boids 100 studs above the Baseplate plus a randomized vector.
EDIT: Forgot to put a script to require the module, just edited the post so it has it now.
Fixed both files and edited the post with the new files, sorry about that.
It will also now work without a Baseplate but if you do make a Baseplate, it’ll spawn Boids 100 studs above plus a randomized vector as I said or it’ll spawn at a different randomized vector like this:
(Vector3.new(math.random(-50, 50), math.random(1, 200), math.random(-50, 50)))