From 377ba0b7f1332503d14c21f2208e3613ed2a7562 Mon Sep 17 00:00:00 2001 From: DoKM Date: Sat, 24 Jul 2021 19:44:17 +0200 Subject: Add edit buttons to other gui overlays please dont hate my "art", i tried --- .../notenoughupdates/storage_gui/storage_gui_1.png | Bin 12408 -> 4726 bytes .../notenoughupdates/storage_gui/storage_gui_2.png | Bin 10543 -> 4341 bytes .../notenoughupdates/storage_gui/storage_gui_3.png | Bin 10623 -> 4417 bytes 3 files changed, 0 insertions(+), 0 deletions(-) (limited to 'src/main/resources/assets/notenoughupdates') diff --git a/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_1.png b/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_1.png index d9703226..e8fdd727 100644 Binary files a/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_1.png and b/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_1.png differ diff --git a/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_2.png b/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_2.png index 5b016cea..9c1ff275 100644 Binary files a/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_2.png and b/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_2.png differ diff --git a/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_3.png b/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_3.png index f6c3e88e..fe03a5bd 100644 Binary files a/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_3.png and b/src/main/resources/assets/notenoughupdates/storage_gui/storage_gui_3.png differ -- cgit From 7b79c6bb2f9b570c9c2c3f424f239c645dfe90d7 Mon Sep 17 00:00:00 2001 From: DoKM Date: Sun, 25 Jul 2021 14:01:53 +0200 Subject: Add extra button texture so dungeon map editor can be read with packshq idk, seems like the simpelest fix for now could switch it out to a config file that allows pack creators to choose the text colours --- .../notenoughupdates/dungeons/GuiDungeonMapEditor.java | 2 +- .../notenoughupdates/dungeon_map/editor/button.png | Bin 0 -> 2664 bytes 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 src/main/resources/assets/notenoughupdates/dungeon_map/editor/button.png (limited to 'src/main/resources/assets/notenoughupdates') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/dungeons/GuiDungeonMapEditor.java b/src/main/java/io/github/moulberry/notenoughupdates/dungeons/GuiDungeonMapEditor.java index ea2631df..1a420c67 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/dungeons/GuiDungeonMapEditor.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/dungeons/GuiDungeonMapEditor.java @@ -37,7 +37,7 @@ import static io.github.moulberry.notenoughupdates.util.GuiTextures.*; public class GuiDungeonMapEditor extends GuiScreen { public static final ResourceLocation BACKGROUND = new ResourceLocation("notenoughupdates:dungeon_map/editor/background.png"); - public static final ResourceLocation BUTTON = new ResourceLocation("notenoughupdates:button.png"); + public static final ResourceLocation BUTTON = new ResourceLocation("notenoughupdates:dungeon_map/editor/button.png"); private static final DungeonMap demoMap = new DungeonMap(); private int sizeX; diff --git a/src/main/resources/assets/notenoughupdates/dungeon_map/editor/button.png b/src/main/resources/assets/notenoughupdates/dungeon_map/editor/button.png new file mode 100644 index 00000000..e96f4284 Binary files /dev/null and b/src/main/resources/assets/notenoughupdates/dungeon_map/editor/button.png differ -- cgit