Skip to content

Commit

Permalink
Pull indicators even further forward
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed May 24, 2024
1 parent 4921d22 commit 4656ee1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class IndicatorIconRenderer implements IconRenderer<IndicatorIcon> {
public void render(IndicatorIcon icon, GuiGraphics graphics, int x, int y) {
IconRenderers.getRenderer(icon.base()).render(icon.base(), graphics, x, y);
graphics.pose().pushPose();
graphics.pose().translate(0f, 0f, 100f);
graphics.pose().translate(0f, 0f, 200f);
graphics.pose().scale(0.5f, 0.5f, 1f);
IconRenderers.getRenderer(icon.indicator()).render(icon.indicator(), graphics, x * 2, y * 2 + 16);
graphics.pose().popPose();
Expand Down

0 comments on commit 4656ee1

Please sign in to comment.