Godot Version
4.2.2
Question
Right now I am making a 3D FPS game with pathfinding enemies. The tree looks like this:
In my game, whenever an objects position is changed (think of a large door opening), or an object is destroyed (exploding barrel deleting itself after animations), I want to update the navigation region to compensate.
So, in relation to this project, I have a questions. Within my project, is it normal for a navigation region to cover the entire level? To have many navigation regions all with the Node3D sub groups seems clunky. However, if the region covers the entire map, then updates to it may be expensive. Is there a way to update only part of a region?
The levels may be split up into different scenes/area like in games such as Half Life or Quake 2, so maybe this won’t be much of an issue.
If I do have multiple regions that may be a bit of a pain, since when starting a level or loading a save, you have a lot of iteration that needs to be done to reconnect signals, and all the objects in a level are deleted, so the ones saved in memory can be loaded in.
Thank you in advance for any advice!