From d81bfc14416f039805145484182389b52ced80c3 Mon Sep 17 00:00:00 2001 From: Guillaume Mercier Date: Wed, 23 Aug 2023 00:41:27 -0400 Subject: Update the conditionals buttons and tooltips on covers to reflect their actual effects (#2244) * Update redstone buttons and tooltips to better reflect actual use * Spotless Apply * Update GT_Cover_FluidRegulator.java * Update GT_Cover_FluidRegulator.java * Typo fix, Icon Improved and interactive blocking ui - Fixed a typo in the world machine - Fixed double button situation for conveyor belts. - There was never any issue, the testing methodology gave me invalid results. - Conveyor behaviour is in line with all the other covers affected by this PR/Branch. - Updated icon for the machine state to be a miniature machine controller cover. - Made the block/allow input section more interactive in order to better reflect the actual effect of these buttons. - In import mode, it actually blocks the machine from outputting from that side. * typos I can't write to save myself sometimes * Better text alignment - Better text alignment * fix typos I swear I can't write to save myself. --------- Co-authored-by: Martin Robertz --- .../textures/gui/overlay_button/allow_output.png | Bin 0 -> 2962 bytes .../textures/gui/overlay_button/block_output.png | Bin 0 -> 2945 bytes .../gui/overlay_button/use_inverted_processing_state.png | Bin 0 -> 2937 bytes .../textures/gui/overlay_button/use_processing_state.png | Bin 0 -> 2935 bytes 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/main/resources/assets/gregtech/textures/gui/overlay_button/allow_output.png create mode 100644 src/main/resources/assets/gregtech/textures/gui/overlay_button/block_output.png create mode 100644 src/main/resources/assets/gregtech/textures/gui/overlay_button/use_inverted_processing_state.png create mode 100644 src/main/resources/assets/gregtech/textures/gui/overlay_button/use_processing_state.png (limited to 'src/main/resources/assets') diff --git a/src/main/resources/assets/gregtech/textures/gui/overlay_button/allow_output.png b/src/main/resources/assets/gregtech/textures/gui/overlay_button/allow_output.png new file mode 100644 index 0000000000..781512788a Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/gui/overlay_button/allow_output.png differ diff --git a/src/main/resources/assets/gregtech/textures/gui/overlay_button/block_output.png b/src/main/resources/assets/gregtech/textures/gui/overlay_button/block_output.png new file mode 100644 index 0000000000..168059b7f9 Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/gui/overlay_button/block_output.png differ diff --git a/src/main/resources/assets/gregtech/textures/gui/overlay_button/use_inverted_processing_state.png b/src/main/resources/assets/gregtech/textures/gui/overlay_button/use_inverted_processing_state.png new file mode 100644 index 0000000000..28a767ecee Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/gui/overlay_button/use_inverted_processing_state.png differ diff --git a/src/main/resources/assets/gregtech/textures/gui/overlay_button/use_processing_state.png b/src/main/resources/assets/gregtech/textures/gui/overlay_button/use_processing_state.png new file mode 100644 index 0000000000..47f991c50a Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/gui/overlay_button/use_processing_state.png differ -- cgit