diff options
author | syeyoung <cyoung06@naver.com> | 2023-01-27 15:23:37 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-01-27 15:23:37 +0900 |
commit | d1621e334a9df13294e5694582769251e8e3294f (patch) | |
tree | 39b65ead9b94332e2e066795e19bb03782aaa9eb /mod/src/main/resources/assets/dungeonsguide | |
parent | 6c1cca66a9e81b24e1a77cd739606abd481e00cd (diff) | |
download | Skyblock-Dungeons-Guide-d1621e334a9df13294e5694582769251e8e3294f.tar.gz Skyblock-Dungeons-Guide-d1621e334a9df13294e5694582769251e8e3294f.tar.bz2 Skyblock-Dungeons-Guide-d1621e334a9df13294e5694582769251e8e3294f.zip |
- Snapping, and new gui config
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod/src/main/resources/assets/dungeonsguide')
-rw-r--r-- | mod/src/main/resources/assets/dungeonsguide/gui/config/hudconfig.gui | 28 | ||||
-rw-r--r-- | mod/src/main/resources/assets/dungeonsguide/gui/config/popupmenu.gui | 49 |
2 files changed, 77 insertions, 0 deletions
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/hudconfig.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/hudconfig.gui new file mode 100644 index 00000000..9d0cdf32 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/hudconfig.gui @@ -0,0 +1,28 @@ +<!-- + ~ 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/>. + --> + +<bgcolor backgroundColor="0x64000000"> + <stack> + <PopupManager> + <slot bind:child="movestuff"/> + </PopupManager> + <align vAlign="CENTER" hAlign="CENTER"> + <Text text="Right Click On Elements to Open Popup Menu" color="#FFFFFFFF"/> + </align> + </stack> +</bgcolor>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/popupmenu.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/popupmenu.gui new file mode 100644 index 00000000..5210cab6 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/popupmenu.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/>. + --> +<UnconstrainedBox> + + <size width="200"> + <RoundRect radius="5" backgroundColor="#FF121212"> + <padding top="5" bottom="5" left="5" right="5"> + <col mainAlign="START" crossAlign="STRETCH"> + <ColorButton disabled="false" + backgroundColor="#FF005500" textColor="#FF777777" + hoveredBackgroundColor="#FF009900" hoveredTextColor="#FF777777" + disabledBackgroundColor="#FF444444" disabledTextColor="#FF777777" + pressedBackgroundColor="#FF00F00F" pressedTextColor="#FF777777" + text="lol1" + /> + <ColorButton disabled="false" + backgroundColor="#FF005500" textColor="#FF777777" + hoveredBackgroundColor="#FF009900" hoveredTextColor="#FF777777" + disabledBackgroundColor="#FF444444" disabledTextColor="#FF777777" + pressedBackgroundColor="#FF00F00F" pressedTextColor="#FF777777" + text="lol2" + /> + <ColorButton disabled="false" + backgroundColor="#FF005500" textColor="#FF777777" + hoveredBackgroundColor="#FF009900" hoveredTextColor="#FF777777" + disabledBackgroundColor="#FF444444" disabledTextColor="#FF777777" + pressedBackgroundColor="#FF00F00F" pressedTextColor="#FF777777" + text="lol3" + /> + </col> + </padding> + </RoundRect> + </size> +</UnconstrainedBox>
\ No newline at end of file |