(String string, float x, float y, float scale)
| 466 | } |
| 467 | |
| 468 | public static void drawScaledString(String string, float x, float y, float scale) { |
| 469 | GLUtil.pushMatrix(); |
| 470 | GLUtil.translate(x, y, 1); |
| 471 | GLUtil.scale(scale, scale, scale); |
| 472 | MinecraftFactory.getVars().drawString(string, 0, 0); |
| 473 | GLUtil.popMatrix(); |
| 474 | } |
| 475 | |
| 476 | } |
no test coverage detected