Is point inside NAV?

Is there a BP node that can tell me wether some location point is inside NavMeshBoundsVolume?
I feel like somthing this basic should be there but i can not semm to find it.
Thank you

Checking that there is NavMesh in a location is not a particularly useful thing to do. If you have two platforms that are not linked but are both inside a NavMesh volume, both will have NavMesh, but you still can’t reach one from the other. What you actually need to check if whether a location is reachable via NavMesh.

That’s probably why there isn’t simply a “Is There NavMesh at Location” node.

You’ll want to use FindPathToLocation and then check if the path was partial or not. If a path is Partial, it means it cannot be reached, so your location either does not have a NavMesh, or it does have a NavMesh but it’s not connected to the same NavMesh you are starting from. If you don’t have a particular “Start” to your path and only want to check that there is NavMesh at the location (for Spawning or something), you should be able to just use the same location for Start and End of the path.

121943-capture.png

Thanks a lot m8!