From 5488a0ab94c68e0fd846e39b2892a40f781d7bd7 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 11 Feb 2023 06:44:49 +0100 Subject: Tps Display - Show the Tps of the current server. --- .../hannibal2/skyhanni/config/features/Misc.java | 25 ++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java index d1ae139b9..467a6c1b6 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -149,6 +149,23 @@ public class Misc { @ConfigAccordionId(id = 7) public boolean tiaRelayMute = true; + @Expose + @ConfigOption(name = "Tps Display", desc = "") + @ConfigEditorAccordion(id = 8) + public boolean tpsDisplay = false; + + @Expose + @ConfigOption(name = "Tps Display", desc = "Show the Tps of the current server.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 8) + public boolean tpsDisplayEnabled = false; + + @Expose + @ConfigOption(name = "Tps Display Position", desc = "") + @ConfigEditorButton(runnableId = "tpsDisplay", buttonText = "Edit") + @ConfigAccordionId(id = 8) + public Position tpsDisplayPosition = new Position(10, 10, false, true); + @Expose @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience bottles lying on the ground.") @ConfigEditorBoolean @@ -180,12 +197,12 @@ public class Misc { public boolean brewingStandOverlay = true; @Expose - @ConfigOption(name = "Config Button", desc = "Add a button to the pause menu to configure SkyHanni.") + @ConfigOption(name = "Red Scoreboard Numbers", desc = "Hide the red scoreboard numbers at the right side of the screen.") @ConfigEditorBoolean - public boolean configButtonOnPause = true; + public boolean hideScoreboardNumbers = false; @Expose - @ConfigOption(name = "Red Scoreboard Numbers", desc = "Hide the red scoreboard numbers at the right side of the screen.") + @ConfigOption(name = "Config Button", desc = "Add a button to the pause menu to configure SkyHanni.") @ConfigEditorBoolean - public boolean hideScoreboardNumbers = false; + public boolean configButtonOnPause = true; } \ No newline at end of file -- cgit