1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package dev.isxander.yacl.gui;
import com.mojang.blaze3d.vertex.PoseStack;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.Font;
import net.minecraft.client.gui.components.Button;
import net.minecraft.client.gui.components.Tooltip;
import net.minecraft.network.chat.Component;
import net.minecraft.util.FormattedCharSequence;
import net.minecraft.util.Mth;
public class TextScaledButtonWidget extends Button {
public float textScale;
public TextScaledButtonWidget(int x, int y, int width, int height, float textScale, Component message, OnPress onPress) {
super(x, y, width, height, message, onPress, DEFAULT_NARRATION);
this.textScale = textScale;
}
public TextScaledButtonWidget(int x, int y, int width, int height, float textScale, Component message, OnPress onPress, Tooltip tooltip) {
this(x, y, width, height, textScale, message, onPress);
setTooltip(tooltip);
}
@Override
public void renderString(PoseStack matrices, Font textRenderer, int x, int y, int color) {
Font font = Minecraft.getInstance().font;
matrices.pushPose();
matrices.translate(((this.getX() + this.width / 2f) - font.width(getMessage()) * textScale / 2), (float)this.getY() + (this.height - 8 * textScale) / 2f / textScale, 0);
matrices.scale(textScale, textScale, 1);
font.drawShadow(matrices, getMessage(), 0, 0, color | Mth.ceil(this.alpha * 255.0F) << 24);
matrices.popPose();
}
}
|