(String text, BitmapFont bitmapFont, float x, float y, Color color, float alpha)
| 1458 | } |
| 1459 | |
| 1460 | public void drawText(String text, BitmapFont bitmapFont, float x, float y, Color color, float alpha) { |
| 1461 | if (text == null || bitmapFont == null || text.isEmpty()) |
| 1462 | return; |
| 1463 | bitmapFont.setColor(color.r, color.g, color.b, alpha); |
| 1464 | bitmapFont.draw(batch, text, x, y); |
| 1465 | } |
| 1466 | |
| 1467 | public void drawText(BitmapFont bitmapFont, GlyphLayout layout, float x, float y) { |
| 1468 | if (bitmapFont == null || layout == null) |
no test coverage detected