Descrição
Unreal 5.5 Blueprint tutorial for finding the closest navigable point to X actor. Actors can have the 'Can Ever Affect Navigation' bool set which will exclude their area from the generated NavMesh. This Function will find the closest point to the actor which exists on the Navmesh. If you are using AIMoveTo and getting Failed or Aborted, this could be one reason. Before using AIMoveTo, first calculate if the Navmesh exists at that point- if not, find the closest point.
If you are trying to calculate an exact point on an Actor's BOUNDS, this tutorial can also help. Please see the Advanced Implementation.
00:00 Intro
01:16 Project Setup
01:58 Simple Implementation
12:38 Advanced Implementation