(String string, int x, int y, float scale)
| 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(); |
no test coverage detected