9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 11:09:06 +00:00

Faster Schematic Placement

This commit is contained in:
Daniel Mills
2020-01-08 13:50:43 -05:00
parent 4094034aaf
commit ad7a4503e0
7 changed files with 201 additions and 50 deletions

View File

@@ -9,11 +9,14 @@ public class Settings
public static class PerformanceSettings
{
public PerformanceMode performanceMode = PerformanceMode.MATCH_CPU;
public PerformanceMode performanceMode = PerformanceMode.DOUBLE_CPU;
public int threadCount = 1;
public int threadPriority = Thread.MIN_PRIORITY;
public boolean loadonstart = false;
public boolean loadonstart = true;
public boolean fastPlacement = false;
public int compilerThreads = 4;
public int compilerPriority = Thread.MAX_PRIORITY;
public int decorationAccuracy = 3;
}
public static class GeneratorSettings