Hi,
This has been bothering me for a while but I have found no concrete answer to this.
I have a huge Open World which uses Origin Shifting to keep the coordinates closer but I need to make sure that AI Agents keep impacting the world without player ever noticing them(I don't want the world to move around the player) i.e A Raiding party moving on the other side of map to its own goal or a Convey going from port to port.
right now AI only activates depending on the distance meaning the Convey or a raiding party will deactivate as soon as player moves away, I don't want that I want that AI to keep simulating tho in a very low Quality and precise way but it should keep working.
btw the AI path finding Algo A* is my custom but I haven't managed to reduce its pathfinding cost I was thinking that maybe if the player is far away I could make the algo faster by making it a bit less precise but no luck in that since it's Grid based and the position needs to calculate its neighbors all the same.
Or maybe I could keep the AI enabled but swap out its Movement component so instead of moving smoothly it moves by snapping to next grid (don't know if this will improve my performance by lot or not).