aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLéa Gris <lea.gris@noiraude.net>2021-05-07 15:10:56 +0200
committerLéa Gris <lea.gris@noiraude.net>2021-05-21 13:38:38 +0200
commit46225e02d1b88a7a25b63b3f230cd6f6a614b279 (patch)
treef72398130cabdfd411d83598c08ef233fb3dc652 /src
parente38f18d5afbfa0164bf415dc399b871fc7652121 (diff)
downloadGT5-Unofficial-46225e02d1b88a7a25b63b3f230cd6f6a614b279.tar.gz
GT5-Unofficial-46225e02d1b88a7a25b63b3f230cd6f6a614b279.tar.bz2
GT5-Unofficial-46225e02d1b88a7a25b63b3f230cd6f6a614b279.zip
feat(render): active disassembler top glow
Diffstat (limited to 'src')
-rw-r--r--src/main/java/gregtech/api/enums/Textures.java1
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java4
-rw-r--r--src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW.pngbin0 -> 251 bytes
3 files changed, 4 insertions, 1 deletions
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
--- /dev/null
+++ b/src/main/resources/assets/gregtech/textures/blocks/iconsets/OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW.png
Binary files differ