- Steam App
- Space Worthy (1599910)
- Event type
- patch note
- Published
- 1 December 2023 - 16:12:13 UTC
- Source
- steam_community_announcements
I am making my own path finding system, because NPCs must navigate on moving strucuters, in environment that changes, or in narrow places like underground mines. New system is more flexible than the old grid-based system I made before, Now it uses much fewer points, so the pathfinding is quicker, it doesn't care about orientation of the ground or gravity direction. Unfortunetly, scanning the world is slower now, because it uses invisible fake humans that randomly walk around. When NPC human or fake human reaches some new location, new point and connections are added to the system. I think there is a lot of space for easy optimization on scanning side. I think It's kind of more realistic that NPCs do not know how to get everywhere, until they scout the area. I am also working on Commands for NPCs You can enter the di...