mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
38 lines
1.1 KiB
Java
38 lines
1.1 KiB
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.UNLIMITED;
|
|
public int threadCount = 12;
|
|
public int threadPriority = Thread.MAX_PRIORITY;
|
|
public boolean loadonstart = true;
|
|
}
|
|
|
|
public static class GeneratorSettings
|
|
{
|
|
public double horizontalZoom = 1; // 0.525
|
|
public double heightFracture = 155;
|
|
public double landScale = 0.205;
|
|
public double landChance = 0.529;
|
|
public double roughness = 1.333;
|
|
public double heightMultiplier = 0.806;
|
|
public double heightExponentBase = 1;
|
|
public double heightExponentMultiplier = 1.41;
|
|
public double heightScale = 0.56;
|
|
public double superHeightScale = 0.95;
|
|
public double baseHeight = 0.165;
|
|
public int seaLevel = 63;
|
|
public double caveDensity = 1;
|
|
public double biomeScale = 2.5;
|
|
public boolean flatBedrock = false;
|
|
public boolean doSchematics = true;
|
|
}
|
|
}
|