aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/config
diff options
context:
space:
mode:
authorThatGravyBoat <thatgravyboat@gmail.com>2021-07-16 11:37:42 -0230
committerThatGravyBoat <thatgravyboat@gmail.com>2021-07-16 11:37:42 -0230
commit13df8fe35749850d7bd560d51f67596094378d16 (patch)
tree85d5195eb7c193e19f2d588846cafb43e0c8eef0 /src/main/java/com/thatgravyboat/skyblockhud/config
parentc1d86146d76e4f3ddc18fbca6dedc5e5d473c11b (diff)
downloadSkyblockHud-Death-Defied-13df8fe35749850d7bd560d51f67596094378d16.tar.gz
SkyblockHud-Death-Defied-13df8fe35749850d7bd560d51f67596094378d16.tar.bz2
SkyblockHud-Death-Defied-13df8fe35749850d7bd560d51f67596094378d16.zip
Added Dialogue boxes
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/config')
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
index f26bef3..3f0f452 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/config/SBHConfig.java
@@ -59,6 +59,9 @@ public class SBHConfig extends Config {
case "heat":
editOverlay(activeConfigCategory, 45, 7, mining.heatBar);
return;
+ case "dialogue":
+ editOverlay(activeConfigCategory, 182, 68, misc.dialoguePos);
+ return;
}
}
@@ -105,6 +108,16 @@ public class SBHConfig extends Config {
@ConfigOption(name = "Bar Textures", desc = "Change the style of bars. Dont change this unless the pack ur using tells you can.")
@ConfigEditorDropdown(values = { "Style 1", "Style 2" })
public int barTexture = 0;
+
+ @Expose
+ @ConfigOption(name = "Hide Dialogue Box", desc = "Hides the Dialogue Box.")
+ @ConfigEditorBoolean
+ public boolean hideDialogueBox = true;
+
+ @Expose
+ @ConfigOption(name = "Dialogue Box", desc = "")
+ @ConfigEditorButton(runnableId = "dialogue", buttonText = "Edit")
+ public Position dialoguePos = new Position(0, -50, true, false);
}
public static class MainHud {