diff options
author | syeyoung <cyoung06@naver.com> | 2023-02-03 11:57:43 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-02-03 11:57:43 +0900 |
commit | 9fdf5d426d2a6267dbd218cec49abdeebd00e153 (patch) | |
tree | c5da5ee167ece02d0989b6abbc3dbe5fcbf686d3 /mod/src/main/resources/assets/dungeonsguide/gui/config | |
parent | 1c4eace48270b2c5ce1a7a8a9eb05fb32d900399 (diff) | |
download | Skyblock-Dungeons-Guide-9fdf5d426d2a6267dbd218cec49abdeebd00e153.tar.gz Skyblock-Dungeons-Guide-9fdf5d426d2a6267dbd218cec49abdeebd00e153.tar.bz2 Skyblock-Dungeons-Guide-9fdf5d426d2a6267dbd218cec49abdeebd00e153.zip |
- time for FeatureParameter fix
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod/src/main/resources/assets/dungeonsguide/gui/config')
3 files changed, 47 insertions, 12 deletions
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/configure.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/configure.gui new file mode 100644 index 00000000..94fb9854 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/configure.gui @@ -0,0 +1,26 @@ +<!-- + ~ 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="#FF111111"> + <ScrollablePanel direction="VERTICAL"> + <padding top="5" left="5" bottom="5" right="5"> + <col crossAlign="STRETCH" mainAlign="START" bind:_="widgets"> + </col> + </padding> + </ScrollablePanel> +</bgcolor>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/featureitem.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/featureitem.gui index a18bf5e1..169d8f4e 100644 --- a/mod/src/main/resources/assets/dungeonsguide/gui/config/featureitem.gui +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/featureitem.gui @@ -22,12 +22,15 @@ <size width="0" height="5"/> <IntrinsicHeight> <row> - <aspectRatio width="1" height="1"> - <Stencil> - <ResourceImage location="dungeonsguide:textures/dglogox128.png" width="128" height="128" textureWidth="128" textureHeight="128"/> - <RoundRect radius="10" slot="stencil"/> - </Stencil> - </aspectRatio> + <SelectiveContainer bind:visible="iconVisibility"> + <aspectRatio width="1" height="1" slot="show"> + <Stencil> + <ResourceImage bind:location="icon" width="128" height="128" textureWidth="128" textureHeight="128"/> + <RoundRect radius="10" slot="stencil"/> + </Stencil> + </aspectRatio> + <size width="0" height="0" slot="hide"/> + </SelectiveContainer> <flexible> <col mainAlign="START" crossAlign="START"> <padding left="5" right="5" top="5" bottom="5"> diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/mainpage.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/mainpage.gui index 966ed1f0..57b3005b 100644 --- a/mod/src/main/resources/assets/dungeonsguide/gui/config/mainpage.gui +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/mainpage.gui @@ -21,15 +21,15 @@ <col mainAlign="CENTER" crossAlign="CENTER"> <size height="30"/> <row mainAlign="CENTER"> - <Text text="Welcome to" color="#FF747474" size="16"/> + <Text text="Welcome to" color="#FFFFFFFF" size="16"/> <Text text=" Dungeons Guide" color="#FF74A0C6" size="16"/> - <Text text="!" color="#FF747474" size="16"/> + <Text text="?" color="#FFFFFFFF" size="16"/> </row> <size height="3"/> <row mainAlign="CENTER"> - <Text text="The most " color="#FF747474" size="8"/> + <Text text="The most " color="#FFFFFFFF" size="8"/> <Text text="intelligent" color="#FFFFFF00" size="8"/> - <Text text=" skyblock mod" color="#FF747474" size="8"/> + <Text text=" skyblock mod" color="#FFFFFFFF" size="8"/> </row> <size height="20"/> <line color="#FF747474"/> @@ -40,13 +40,19 @@ <size height="20"/> <row mainAlign="CENTER"> <size height="32" width="32"> - <ResourceImage location="dungeonsguide:textures/config/discord.png" width="128" height="128" textureWidth="128" textureHeight="128"/> + <IconButton location="dungeonsguide:textures/dglogox128.png" width="128" height="128" on:click="store"/> </size> <size width="10" height="0"/> <size height="32" width="32"> - <ResourceImage location="dungeonsguide:textures/config/github.png" width="128" height="128" textureWidth="128" textureHeight="128"/> + <IconButton location="dungeonsguide:textures/config/discord.png" width="128" height="128" on:click="discord"/> + </size> + <size width="10" height="0"/> + <size height="32" width="32"> + <IconButton location="dungeonsguide:textures/config/github.png" width="128" height="128" on:click="github"/> </size> </row> + <size height="10"/> + <Text text="Join the discord for mod support and more!" color="#FFAAAAAA" size="8"/> </col> </padding> </ScrollablePanel>
\ No newline at end of file |