aboutsummaryrefslogtreecommitdiff
path: root/mod/src/main/resources/assets/dungeonsguide/gui/elements/checkbox.gui
diff options
context:
space:
mode:
authorsyeyoung <cyoung06@naver.com>2023-02-09 21:19:24 +0900
committersyeyoung <cyoung06@naver.com>2023-02-09 21:19:24 +0900
commit9550040e6a8068132d91f2f42f56be91618bf33d (patch)
tree3e6ce45821fd68a583601189d3de2ac76c8f9e9e /mod/src/main/resources/assets/dungeonsguide/gui/elements/checkbox.gui
parent634c97f91c1fc52fb3cc980c3a5b8ccaf942eb17 (diff)
downloadSkyblock-Dungeons-Guide-9550040e6a8068132d91f2f42f56be91618bf33d.tar.gz
Skyblock-Dungeons-Guide-9550040e6a8068132d91f2f42f56be91618bf33d.tar.bz2
Skyblock-Dungeons-Guide-9550040e6a8068132d91f2f42f56be91618bf33d.zip
- Better Text Configuration
I feel like this might be worse Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod/src/main/resources/assets/dungeonsguide/gui/elements/checkbox.gui')
-rw-r--r--mod/src/main/resources/assets/dungeonsguide/gui/elements/checkbox.gui41
1 files changed, 41 insertions, 0 deletions
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/elements/checkbox.gui b/mod/src/main/resources/assets/dungeonsguide/gui/elements/checkbox.gui
new file mode 100644
index 00000000..58d25094
--- /dev/null
+++ b/mod/src/main/resources/assets/dungeonsguide/gui/elements/checkbox.gui
@@ -0,0 +1,41 @@
+<!--
+ ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
+ ~ Copyright (C) 2023 cyoung06 (syeyoung)
+ ~
+ ~ This program is free software: you can redistribute it and/or modify
+ ~ it under the terms of the GNU Affero General Public License as published
+ ~ by the Free Software Foundation, either version 3 of the License, or
+ ~ (at your option) any later version.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ~ GNU Affero General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Affero General Public License
+ ~ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ -->
+<wrapper radius="3">
+ <RoundRect backgroundColor="#FFFFFFFF" bind:radius="radius">
+ <padding left="1" top="1" right="1" bottom="1">
+ <AbstractToggleButton bind:enabled="enabled">
+ <RoundRect slot="on" backgroundColor="#FF000000" bind:radius="radius">
+ <align>
+ <Text text="v" color="#FFFFFFFF"/>
+ </align>
+ </RoundRect>
+ <RoundRect slot="off" backgroundColor="#FF000000" bind:radius="radius">
+
+ </RoundRect>
+ <RoundRect slot="hoverOn" backgroundColor="#FF000000" bind:radius="radius">
+ <align>
+ <Text text="v" color="#FFFFFFFF"/>
+ </align>
+ </RoundRect>
+ <RoundRect slot="hoverOff" backgroundColor="#FF000000" bind:radius="radius">
+
+ </RoundRect>
+ </AbstractToggleButton>
+ </padding>
+ </RoundRect>
+</wrapper> \ No newline at end of file