250k -> 375k triangle limit by default

This commit is contained in:
Loporrit
2025-02-20 17:03:09 +00:00
parent 387aacdd6a
commit 06c2d8b007
2 changed files with 6 additions and 4 deletions

View File

@@ -7,6 +7,6 @@ public class PlayerPerformanceConfig : IMareConfiguration
public bool NotifyAutoPauseDirectPairs { get; set; } = true;
public bool NotifyAutoPauseGroupPairs { get; set; } = false;
public int VRAMSizeAutoPauseThresholdMiB { get; set; } = 550;
public int TrisAutoPauseThresholdThousands { get; set; } = 250;
public int TrisAutoPauseThresholdThousands { get; set; } = 375;
public bool IgnoreDirectPairs { get; set; } = true;
}