Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,10 @@ interface IDs {
UITexture BUTTON_ITEM_OUTPUT = fullImage("textures/gui/widget/button_item_output_overlay.png");
UITexture BUTTON_FLUID_OUTPUT = fullImage(
"textures/gui/widget/button_fluid_output_overlay.png");
UITexture BUTTON_ITEM_ALLOW_INPUT_OUTPUT = fullImage(
"textures/gui/widget/button_item_allow_input_output_overlay.png");
UITexture BUTTON_FLUID_ALLOW_INPUT_OUTPUT = fullImage(
"textures/gui/widget/button_fluid_allow_input_output_overlay.png");
UITexture BUTTON_AUTO_COLLAPSE = fullImage(
"textures/gui/widget/button_auto_collapse_overlay.png");
UITexture BUTTON_X = fullImage("textures/gui/widget/button_x_overlay.png", ColorType.DEFAULT);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,13 @@ public static ToggleButton createAutoOutputFluidButton(AutoOutputTrait autoOutpu

public static ToggleButton createInputFromOutputItem(AutoOutputTrait autoOutput) {
return createToggleButton(autoOutput::allowsItemInputFromOutputSide,
autoOutput::setAllowItemInputFromOutputSide, GTGuiTextures.BUTTON_ITEM_OUTPUT,
autoOutput::setAllowItemInputFromOutputSide, GTGuiTextures.BUTTON_ITEM_ALLOW_INPUT_OUTPUT,
"gtceu.gui.item_input_from_output");
}

public static ToggleButton createInputFromOutputFluid(AutoOutputTrait autoOutput) {
return createToggleButton(autoOutput::allowsFluidInputFromOutputSide,
autoOutput::setAllowFluidInputFromOutputSide, GTGuiTextures.BUTTON_FLUID_OUTPUT,
autoOutput::setAllowFluidInputFromOutputSide, GTGuiTextures.BUTTON_FLUID_ALLOW_INPUT_OUTPUT,
"gtceu.gui.fluid_input_from_output");
}

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading