(Batch batch, String text, Color color, float x, float y, float w, boolean wrap, int horzAlignment)
| 322 | } |
| 323 | |
| 324 | public void draw(Batch batch, String text, Color color, float x, float y, float w, boolean wrap, int horzAlignment) { |
| 325 | updateScale(); |
| 326 | font.setColor(color); |
| 327 | font.draw(batch, text, x, y, w, horzAlignment, wrap); |
| 328 | } |
| 329 | |
| 330 | //update scale of font if needed |
| 331 | private void updateScale() { |
nothing calls this directly
no test coverage detected