aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormakamys <makamys@outlook.com>2022-06-09 15:19:33 +0200
committermakamys <makamys@outlook.com>2022-06-09 15:20:13 +0200
commitf5643939865a77091a9deaa18c3cd41bcdf110e3 (patch)
tree441d62f7c5d6452471ad78f939beb9dae77b8685
parentdd2bc7b1d3fca46e690771b851a9823dc5e9a8e5 (diff)
downloadNeodymium-f5643939865a77091a9deaa18c3cd41bcdf110e3.tar.gz
Neodymium-f5643939865a77091a9deaa18c3cd41bcdf110e3.tar.bz2
Neodymium-f5643939865a77091a9deaa18c3cd41bcdf110e3.zip
Reword config comment
-rw-r--r--src/main/java/makamys/neodymium/Config.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/makamys/neodymium/Config.java b/src/main/java/makamys/neodymium/Config.java
index 378fb4d..65c9274 100644
--- a/src/main/java/makamys/neodymium/Config.java
+++ b/src/main/java/makamys/neodymium/Config.java
@@ -62,7 +62,7 @@ public class Config {
simplifyChunkMeshes = config.getBoolean("simplifyChunkMeshes", "render", false, "Simplify chunk meshes so they are made of less vertices. Proof of concept, produces very janky results.");
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 framerate. The VRAM debugger can be used to find the right value.");
+ 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.");