From 2a6fbf6fa35d2f0767cf4851cdeb1a9d3440425c Mon Sep 17 00:00:00 2001 From: Wilhelm Schuster Date: Thu, 22 Jun 2023 12:49:46 +0200 Subject: Improve Long Distance Pipeline usability and rework textures slightly (#2094) * Improve Long Distance Pipe WAILA status Also addiotional information to the NEI item tooltip * Long Distance Pipeline texture improvements The side textures of the pipeline start/end blocks are now aligned with the axis through the input output face (most visible with the Item Pipeline). This is based on the Buffer texture code. In addition, the input and output face textures have received the typical blue/orange coding found on multiblock hatches and busses. --- src/main/java/gregtech/api/enums/Textures.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/main/java/gregtech/api') diff --git a/src/main/java/gregtech/api/enums/Textures.java b/src/main/java/gregtech/api/enums/Textures.java index 80d7d1c8f0..b762385238 100644 --- a/src/main/java/gregtech/api/enums/Textures.java +++ b/src/main/java/gregtech/api/enums/Textures.java @@ -51,13 +51,17 @@ public class Textures { OVERLAY_PIPELINE_FLUID_BACK, OVERLAY_PIPELINE_FLUID_FRONT, - OVERLAY_PIPELINE_FLUID_SIDE, - OVERLAY_PIPELINE_FLUID_SIDE_GLOW, + OVERLAY_PIPELINE_FLUID_SIDE_LEFT_RIGHT, + OVERLAY_PIPELINE_FLUID_SIDE_LEFT_RIGHT_GLOW, + OVERLAY_PIPELINE_FLUID_SIDE_UP_DOWN, + OVERLAY_PIPELINE_FLUID_SIDE_UP_DOWN_GLOW, OVERLAY_PIPELINE_ITEM_BACK, OVERLAY_PIPELINE_ITEM_FRONT, - OVERLAY_PIPELINE_ITEM_SIDE, - OVERLAY_PIPELINE_ITEM_SIDE_GLOW, + OVERLAY_PIPELINE_ITEM_SIDE_LEFT_RIGHT, + OVERLAY_PIPELINE_ITEM_SIDE_LEFT_RIGHT_GLOW, + OVERLAY_PIPELINE_ITEM_SIDE_UP_DOWN, + OVERLAY_PIPELINE_ITEM_SIDE_UP_DOWN_GLOW, LONG_DISTANCE_PIPE_FLUID, LONG_DISTANCE_PIPE_ITEM, -- cgit