9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 02:29:14 +00:00
Files
Iris-World-Engine/src/main/java/ninja/bytecode/iris/Settings.java
2020-01-04 15:24:03 -05:00

35 lines
1016 B
Java

package ninja.bytecode.iris;
import ninja.bytecode.iris.util.PerformanceMode;
public class Settings
{
public PerformanceSettings performance = new PerformanceSettings();
public GeneratorSettings gen = new GeneratorSettings();
public static class PerformanceSettings
{
public PerformanceMode performanceMode = PerformanceMode.MATCH_CPU;
public int threadCount = 12;
public int threadPriority = Thread.MIN_PRIORITY;
public boolean loadonstart = true;
}
public static class GeneratorSettings
{
public double horizontalZoom = 0.525; // 0.525
public double heightFracture = 155;
public double heightMultiplier = 0.806;
public double heightExponentBase = 1;
public double heightExponentMultiplier = 1.41;
public double heightScale = 1;
public double superHeightScale = 0.95;
public double baseHeight = 0.165;
public int seaLevel = 63;
public double caveDensity = 3;
public double biomeScale = 2.46;
public boolean flatBedrock = false;
public boolean doSchematics = true;
}
}