From 13df8fe35749850d7bd560d51f67596094378d16 Mon Sep 17 00:00:00 2001 From: ThatGravyBoat Date: Fri, 16 Jul 2021 11:37:42 -0230 Subject: Added Dialogue boxes --- .../com/thatgravyboat/skyblockhud/config/SBHConfig.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/main/java/com/thatgravyboat/skyblockhud/config') 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 { -- cgit