Skip to content

Commit

Permalink
Fix progress bar textures (#2163)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiceyBeans authored Oct 13, 2024
1 parent ff0b206 commit 4209e6d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/main/java/com/gregtechceu/gtceu/api/gui/GuiTextures.java
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,9 @@ public class GuiTextures {
.fullImage("gtceu:textures/gui/progress_bar/progress_bar_arrow_%s.png");
public static final ResourceTexture PROGRESS_BAR_ARROW_MULTIPLE = new ResourceTexture(
"gtceu:textures/gui/progress_bar/progress_bar_arrow_multiple.png");
public static final ResourceTexture PROGRESS_BAR_ASSEMBLER = new ResourceTexture(
"gtceu:textures/gui/progress_bar/progress_bar_assembler.png");

public static final ResourceTexture PROGRESS_BAR_ASSEMBLY_LINE = new ResourceTexture(
"gtceu:textures/gui/progress_bar/progress_bar_assembly_line.png");
public static final ResourceTexture PROGRESS_BAR_ASSEMBLY_LINE_ARROW = new ResourceTexture(
Expand All @@ -404,7 +407,7 @@ public class GuiTextures {
public static final ResourceTexture PROGRESS_BAR_CANNER = new ResourceTexture(
"gtceu:textures/gui/progress_bar/progress_bar_canner.png");
public static final ResourceTexture PROGRESS_BAR_CIRCUIT = new ResourceTexture(
"gtceu:textures/gui/progress_bar/progress_bar_circuit.png");
"gtceu:textures/gui/progress_bar/progress_bar_circuit_assembler.png");
public static final ResourceTexture PROGRESS_BAR_CIRCUIT_ASSEMBLER = new ResourceTexture(
"gtceu:textures/gui/progress_bar/progress_bar_circuit_assembler.png");
public static final ResourceTexture PROGRESS_BAR_COKE_OVEN = new ResourceTexture(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public class GTRecipeTypes {
public final static GTRecipeType ASSEMBLER_RECIPES = register("assembler", ELECTRIC).setMaxIOSize(9, 1, 1, 0)
.setEUIO(IO.IN)
.setSlotOverlay(false, false, GuiTextures.CIRCUIT_OVERLAY)
.setProgressBar(GuiTextures.PROGRESS_BAR_CIRCUIT, LEFT_TO_RIGHT)
.setProgressBar(GuiTextures.PROGRESS_BAR_ASSEMBLER, LEFT_TO_RIGHT)
.setSound(GTSoundEntries.ASSEMBLER);

public final static GTRecipeType AUTOCLAVE_RECIPES = register("autoclave", ELECTRIC).setMaxIOSize(2, 2, 1, 1)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4209e6d

Please sign in to comment.