There is a mechanic I’d like to implement in my game, and it requires pathfinding. However, I’m not sure how to make it do specifically what I’d like.
Basically, I want an NPC to follow a specified and pre-determined path on a map. There is a part that is the base, and then there is the actual path which is separate from the base. I don’t want the NPC to be able to touch the base, only the path.
I’m not sure if FindPathAsync would be the best for this, but I’d like to avoid making extra parts that specify where the player should walk.