Hey all,
I am working on a game where enemies spawn and move to your location, then fire a laser at you.
The problem is, they all spawn from the same location (and it has to be this way for the design to work), so they just clump up and come to you in a big group, because all their individual ‘path finds’ return with the same path.
I am curious if there is an easy way to, instead of the AI finding the most optimal path, have them find a less optimal path, so the group would split up and go down different paths? Our levels are procedural, so dropping custom waypoints everywhere won’t work.