Some simple fixes

This commit is contained in:
modmuss50 2023-05-13 13:46:48 +01:00 committed by modmuss
parent 08f75889ec
commit 2f07306d90
6 changed files with 13 additions and 5 deletions

View file

@ -25,6 +25,7 @@
package techreborn.client.gui;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.text.Text;
import reborncore.client.gui.builder.GuiBase;
@ -56,6 +57,11 @@ public class GuiIDSU extends GuiBase<BuiltScreenHandler> {
super.drawForeground(drawContext, mouseX, mouseY);
final Layer layer = Layer.FOREGROUND;
MatrixStack matrices = drawContext.getMatrices();
matrices.push();
matrices.scale(0.6f, 0.6f, 1.0f);
Text text = Text.literal(PowerSystem.getLocalizedPowerNoSuffix(idsu.getEnergy()))
.append("/")
.append(PowerSystem.getLocalizedPowerNoSuffix(idsu.getMaxStoredPower()))
@ -64,6 +70,8 @@ public class GuiIDSU extends GuiBase<BuiltScreenHandler> {
drawCentredText(drawContext, text, 35, 0, 58, layer);
matrices.pop();
builder.drawMultiEnergyBar(drawContext, this, 81, 28, (int) idsu.getEnergy(), (int) idsu.getMaxStoredPower(), mouseX, mouseY, 0, layer);
}