From 46225e02d1b88a7a25b63b3f230cd6f6a614b279 Mon Sep 17 00:00:00 2001 From: Léa Gris Date: Fri, 7 May 2021 15:10:56 +0200 Subject: feat(render): active disassembler top glow --- src/main/java/gregtech/api/enums/Textures.java | 1 + .../machines/basic/GT_MetaTileEntity_Disassembler.java | 4 +++- .../iconsets/OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW.png | Bin 0 -> 251 bytes 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW.png diff --git a/src/main/java/gregtech/api/enums/Textures.java b/src/main/java/gregtech/api/enums/Textures.java index 9f0cbec27d..a8835e90e0 100644 --- a/src/main/java/gregtech/api/enums/Textures.java +++ b/src/main/java/gregtech/api/enums/Textures.java @@ -557,6 +557,7 @@ public class Textures { OVERLAY_TOP_STEAM_EXTRACTOR_ACTIVE, OVERLAY_TOP_DISASSEMBLER_ACTIVE, + OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW, OVERLAY_TOP_BOXINATOR_ACTIVE, OVERLAY_TOP_ROCK_BREAKER_ACTIVE, OVERLAY_TOP_SCANNER_ACTIVE, diff --git a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java index 815c9e0867..f63b1eaa99 100644 --- a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java +++ b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java @@ -58,7 +58,9 @@ public class GT_MetaTileEntity_Disassembler extends GT_MetaTileEntity_BasicMachi new GT_MultiTexture( new GT_RenderedTexture(OVERLAY_FRONT_DISASSEMBLER), new GT_RenderedGlowTexture(OVERLAY_FRONT_DISASSEMBLER_GLOW)), - new GT_RenderedTexture(OVERLAY_TOP_DISASSEMBLER_ACTIVE), + new GT_MultiTexture( + new GT_RenderedTexture(OVERLAY_TOP_DISASSEMBLER_ACTIVE), + new GT_RenderedGlowTexture(OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW)), new GT_RenderedTexture(OVERLAY_TOP_DISASSEMBLER), new GT_RenderedTexture(OVERLAY_BOTTOM_DISASSEMBLER_ACTIVE), new GT_RenderedTexture(OVERLAY_BOTTOM_DISASSEMBLER) diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW.png b/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW.png new file mode 100644 index 0000000000..ea681e2e35 Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW.png differ -- cgit