diff options
author | syeyoung <cyoung06@naver.com> | 2023-02-04 02:03:37 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-02-04 02:03:37 +0900 |
commit | f3410c50bdcc5c5ddbbdfa05ad539d178dfdbf84 (patch) | |
tree | 462cc75e8892451570c72a047e7759ab12859f56 /mod/src/main/resources/assets/dungeonsguide/gui/features | |
parent | 9fdf5d426d2a6267dbd218cec49abdeebd00e153 (diff) | |
download | Skyblock-Dungeons-Guide-f3410c50bdcc5c5ddbbdfa05ad539d178dfdbf84.tar.gz Skyblock-Dungeons-Guide-f3410c50bdcc5c5ddbbdfa05ad539d178dfdbf84.tar.bz2 Skyblock-Dungeons-Guide-f3410c50bdcc5c5ddbbdfa05ad539d178dfdbf84.zip |
- Configuration Overhaul
- Move to new system
- more shaders!!
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod/src/main/resources/assets/dungeonsguide/gui/features')
-rw-r--r-- | mod/src/main/resources/assets/dungeonsguide/gui/features/fairysoul/roomconfiguration.gui | 49 | ||||
-rw-r--r-- | mod/src/main/resources/assets/dungeonsguide/gui/features/fairysoul/roomswitch.gui | 34 |
2 files changed, 83 insertions, 0 deletions
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/features/fairysoul/roomconfiguration.gui b/mod/src/main/resources/assets/dungeonsguide/gui/features/fairysoul/roomconfiguration.gui new file mode 100644 index 00000000..c9bbbc54 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/features/fairysoul/roomconfiguration.gui @@ -0,0 +1,49 @@ +<!-- + ~ 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/>. + --> + +<padding left="5" right="5" top="5"> + <col> + <line color="#FFFFFFFF"/> + <size width="0" height="5"/> + <row crossAlign="END"> + <flexible> + <Text text="Enable for these rooms" color="#FFFFFFFF" size="12"/> + </flexible> + <size width="60" height="12"> + <padding left="5"> + <RoundButton on:click="eall" hPadding="1" + text="Enable All" + /> + </padding> + </size> + <size width="60" height="12"> + <padding left="5"> + <RoundButton on:click="dall" hPadding="1" + text="Disable All" + /> + </padding> + </size> + </row> + <size width="0" height="5"/> + <RoundRect radius="5" backgroundColor="#FF333333"> + <padding left="5" top="5" right="5" bottom="5"> + <WrapGrid minimumWidth="160" gap="5" bind:_="rooms"/> + </padding> + </RoundRect> + </col> +</padding>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/features/fairysoul/roomswitch.gui b/mod/src/main/resources/assets/dungeonsguide/gui/features/fairysoul/roomswitch.gui new file mode 100644 index 00000000..64352709 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/features/fairysoul/roomswitch.gui @@ -0,0 +1,34 @@ +<!-- + ~ 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/>. + --> + +<size height="20"> + <padding left="5" right="5"> + <row crossAlign="CENTER"> + <flexible> + <align vAlign="CENTER" hAlign="START"> + <Text bind:text="name" color="#FFFFFFFF"/> + </align> + </flexible> + <size width="45" height="14"> + <padding left="5"> + <SimpleToggleButton bind:enabled="enabled"/> + </padding> + </size> + </row> + </padding> +</size>
\ No newline at end of file |