diff options
author | makamys <makamys@outlook.com> | 2022-06-21 03:47:20 +0200 |
---|---|---|
committer | makamys <makamys@outlook.com> | 2022-06-21 03:48:21 +0200 |
commit | d8223acc07b18871525b02618c18c6e5f9821457 (patch) | |
tree | 09352d0a4e70f1ac4a1ad0b47ad0594c8f3e6cd6 /src/main/java/makamys/neodymium | |
parent | 73135523766b0295f83b7aa6908c5afbf03ab908 (diff) | |
download | Neodymium-d8223acc07b18871525b02618c18c6e5f9821457.tar.gz Neodymium-d8223acc07b18871525b02618c18c6e5f9821457.tar.bz2 Neodymium-d8223acc07b18871525b02618c18c6e5f9821457.zip |
Tweak config comments und defaults
rip frog typo
Diffstat (limited to 'src/main/java/makamys/neodymium')
-rw-r--r-- | src/main/java/makamys/neodymium/Config.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/makamys/neodymium/Config.java b/src/main/java/makamys/neodymium/Config.java index 2ab3ecf..f7bad23 100644 --- a/src/main/java/makamys/neodymium/Config.java +++ b/src/main/java/makamys/neodymium/Config.java @@ -72,13 +72,13 @@ public class Config { enabled = config.getBoolean("enabled", "_general", true, "Set this to false to fully disable the mod."); hotswap = config.getBoolean("hotswap", "_general", false, "Apply changes made in the config file immediately without having to reload the world. Off by default because it could potentially cause poor performance on certain platforms. Note that not all settings can be hotswapped."); - simplifyChunkMeshes = config.getBoolean("simplifyChunkMeshes", "render", false, "Simplify chunk meshes so they are made of less vertices. Proof of concept, produces very janky results."); + simplifyChunkMeshes = config.getBoolean("simplifyChunkMeshes", "render", true, "Simplify chunk meshes so they are made of less vertices. Improves performance with no known downside."); cullFaces = config.getBoolean("cullFaces", "render", false, "Don't submit faces for rendering if they are facing away from the camera. Reduces GPU workload at the cost of increasing driver overhead. On weaker graphics cards this may significantly improve performance, but on better cards it may have the opposite effect."); sortFrequency = config.getInt("sortFrequency", "render", 1, 1, Integer.MAX_VALUE, "Interval (in frames) between the sorting of meshes. Increasing this might increase framerate, but increase the likelyhood of graphical artifacts when moving quickly."); gcRate = config.getInt("gcRate", "render", 1, 1, Integer.MAX_VALUE, "Maximum number of meshes to relocate in the buffer each frame. Setting this to a higher value will make it harder for the VRAM to get full (which causes a lag spike when it happens), but slightly reduces overall framerate. Examining the VRAM debugger can help find the right value."); VRAMSize = config.getInt("VRAMSize", "render", 1024, 1, Integer.MAX_VALUE, "VRAM buffer size (MB). 512 seems to be a good value on Normal render distance. Increase this if you encounter warnings about the VRAM getting full. Does not affect RAM usage."); - renderFog = config.getBoolean("renderFog", "render", true, "Render frog? Disabling this might increase framerate."); + renderFog = config.getBoolean("renderFog", "render", true, "Render fog? Disabling this might increase framerate."); maxMeshesPerFrame = config.getInt("maxMeshesPerFrame", "debug", -1, -1, Integer.MAX_VALUE, ""); debugPrefix = config.getInt("debugPrefix", "debug", Keyboard.KEY_F4, -1, Integer.MAX_VALUE, "This key has to be held down while pressing the debug keybinds. LWJGL keycode. Setting this to 0 will make the keybinds usable without holding anything else down. Setting this to -1 will disable debug keybinds entirely."); |