| 55 | /// <param name="result">The result position on the navmesh (valid only if method returns true).</param> |
| 56 | /// <returns>True if found valid location on the navmesh, otherwise false.</returns> |
| 57 | API_FUNCTION() DEPRECATED("Use FindClosestPoint instead") static bool ProjectPoint(const Vector3& point, API_PARAM(Out) Vector3& result) |
| 58 | { |
| 59 | return FindClosestPoint(point, result); |
| 60 | } |
| 61 | |
| 62 | /// <summary> |
| 63 | /// Finds random location on nav mesh. |
no outgoing calls
no test coverage detected