diff options
author | makamys <makamys@outlook.com> | 2022-06-27 13:22:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 13:22:10 +0200 |
commit | 4748c071dd5e335b1313fc6a7358afd26ad102c4 (patch) | |
tree | 7c6b73085205ff0109ae0041d29d4102777e8f0d /src/main/java/makamys/neodymium/Config.java | |
parent | 1600a672fcd82be6b8c4ebe48b017cbfd27220ec (diff) | |
parent | 76eb72f6dd329e726f33b0557f4743869e40a032 (diff) | |
download | Neodymium-4748c071dd5e335b1313fc6a7358afd26ad102c4.tar.gz Neodymium-4748c071dd5e335b1313fc6a7358afd26ad102c4.tar.bz2 Neodymium-4748c071dd5e335b1313fc6a7358afd26ad102c4.zip |
Merge pull request #1 from FalsePattern/master
Integrate the debug text with the forge debug text rendering system
Diffstat (limited to 'src/main/java/makamys/neodymium/Config.java')
-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 badfcce..8594dd5 100644 --- a/src/main/java/makamys/neodymium/Config.java +++ b/src/main/java/makamys/neodymium/Config.java @@ -58,8 +58,8 @@ public class Config { public static int maxMeshesPerFrame; @ConfigInt(cat="debug", def=Keyboard.KEY_F4, min=-1, max=Integer.MAX_VALUE, com="The LWJGL keycode of the key that has to be held down while pressing the debug keybinds. Setting this to 0 will make the keybinds usable without holding anything else down. Setting this to -1 will disable debug keybinds entirely.") public static int debugPrefix; - @ConfigInt(cat="debug", def=110, min=-1, max=Integer.MAX_VALUE, com="The Y position of the first line of the debug info in the F3 overlay. Set this to -1 to disable showing that info.") - public static int debugInfoStartY; + @ConfigBoolean(cat="debug", def=true, com="Set this to false to stop showing the debug info in the F3 overlay.") + public static boolean showDebugInfo; @ConfigBoolean(cat="debug", def=false) public static boolean wireframe; |