Skip to content

Commit

Permalink
make the ingamehud look a bit more like the mainmenu ui
Browse files Browse the repository at this point in the history
  • Loading branch information
flustix committed Aug 27, 2022
1 parent 40dd706 commit c23ed29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/net/foxes4life/foxclient/gui/FoxClientHUD.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ public FoxClientHUD(MinecraftClient client) {
public void render(MatrixStack matrices) {
loadList();

fill(matrices, 2, 2, boxWidth, boxHeight, 0x45454545);
fill(matrices, 0, 0, boxWidth - 5, boxHeight - 5, 0x45454545);
fill(matrices, boxWidth - 5, 0, boxWidth, boxHeight - 5, 0x45454545);
fill(matrices, 0, boxHeight - 5, boxWidth - 5, boxHeight, 0x45454545);

// draw logo
RenderSystem.setShader(GameRenderer::getPositionTexShader);
Expand Down

0 comments on commit c23ed29

Please sign in to comment.