MinecraftScripterAI
Discord ↗
Link Copied to Clipboard
×
"Show me how to center my custom screen name in my custom screen"
/* To center your custom screen name in your custom screen in Minecraft Forge, you can use the drawString method of the FontRenderer class to draw the screen name. The x position of the drawString method can be calculated by subtracting half the width of the string (obtained by calling font.width) from half the width of the screen (this.width / 2). */ public class CustomScreen extends Screen { protected CustomScreen(ITextComponent titleIn) { super(titleIn); } @Override public void render(MatrixStack matrixStack, int mouseX, int mouseY, float partialTicks) { super.render(matrixStack, mouseX, mouseY, partialTicks); /* Your custom screen name */ String screenName = "Your Custom Screen Name"; /* Calculate the x position to center the screen name */ int x = (this.width - this.font.width(screenName)) / 2; /* Draw the screen name */ this.font.draw(matrixStack, screenName, x, 10, 0xFFFFFF); } }