9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-23 17:19:16 +00:00
This commit is contained in:
Daniel Mills
2020-10-22 11:07:47 -04:00
parent 6199256058
commit a8b684d966
11 changed files with 650 additions and 75 deletions

View File

@@ -30,6 +30,14 @@ public class IrisSettings
@Desc("Iris uses a lot of caching to speed up chunk generation. Setting this higher uses more memory, but may improve performance. Anything past 8,000 should be avoided because there is little benefit past this value.")
public int atomicCacheSize = 3000;
@DontObfuscate
@Desc("Max pregen async chunk threads.")
public int maxAsyncChunkPregenThreads = 300;
@DontObfuscate
@Desc("More cpu for pregen gui but looks nice.")
public boolean maxPregenGuiFPS = false;
@DontObfuscate
@Desc("Compress parallax data in memory to reduce memory usage in exchange for more cpu usage.")
public boolean parallaxCompression = true;
@@ -50,6 +58,10 @@ public class IrisSettings
@Desc("System Effects")
public boolean systemEffects = true;
@DontObfuscate
@Desc("Disable all nms")
public boolean disableNMS = false;
@DontObfuscate
@Desc("System Spawn Overrides")
public boolean systemEntitySpawnOverrides = true;