Pathfinder tweaks (#12848)

This commit is contained in:
metalgearsloth
2022-12-07 10:33:44 +11:00
committed by GitHub
parent 8f641137e8
commit dd384c55a0
7 changed files with 18 additions and 17 deletions

View File

@@ -11,7 +11,7 @@ public sealed partial class PathfindingSystem
/// <summary>
/// Maximum amount of nodes we're allowed to expand.
/// </summary>
private const int NodeLimit = 200;
private const int NodeLimit = 512;
private sealed class PathComparer : IComparer<ValueTuple<float, PathPoly>>
{