MCPcopy Create free account
hub / github.com/5zig/The-5zig-Mod / drawScaledCenteredString

Method drawScaledCenteredString

Mod Utils/src/eu/the5zig/mod/gui/Gui.java:452–458  ·  view source on GitHub ↗
(String string, int x, int y, float scale)

Source from the content-addressed store, hash-verified

450 }
451
452 public static void drawScaledCenteredString(String string, int x, int y, float scale) {
453 GLUtil.pushMatrix();
454 GLUtil.translate(x, y, 1);
455 GLUtil.scale(scale, scale, scale);
456 MinecraftFactory.getVars().drawCenteredString(string, 0, 0);
457 GLUtil.popMatrix();
458 }
459
460 public static void drawScaledCenteredString(String string, int x, int y, float scale, int color) {
461 GLUtil.pushMatrix();

Callers 4

drawMethod · 0.95
drawStatusMethod · 0.95
drawMethod · 0.95

Calls 6

pushMatrixMethod · 0.95
translateMethod · 0.95
scaleMethod · 0.95
getVarsMethod · 0.95
popMatrixMethod · 0.95
drawCenteredStringMethod · 0.65

Tested by

no test coverage detected