Add support for accessing Game Settings and related assets in C# API in game build

This commit is contained in:
Wojtek Figat
2021-03-01 16:17:01 +01:00
parent e218cc417f
commit d6b566a3fe
6 changed files with 43 additions and 14 deletions

View File

@@ -58,7 +58,6 @@ public:
/// <summary>
/// Finds random location on nav mesh within the reach of specified location.
/// </summary>
/// <remarks>If the result location doesn't need to be exactly inside the circle but just in local are aof the navigation mesh polys, then use more optimized <see cref="FindRandomPointAround"/>.</remarks>
/// <param name="center">The source point to find random location around it.</param>
/// <param name="radius">The search distance for a random point. Maximum distance for a result point from the center of the circle.</param>
/// <param name="result">The result position on the navmesh (valid only if method returns true).</param>