()
| 347 | } |
| 348 | |
| 349 | private Texture getDummy() { |
| 350 | if (dummy == null) { |
| 351 | Pixmap P = new Pixmap(1, 1, Pixmap.Format.RGBA8888); |
| 352 | P.setColor(0f, 0f, 0f, 1f); |
| 353 | P.drawPixel(0, 0); |
| 354 | dummy = new Texture(P); |
| 355 | P.dispose(); |
| 356 | } |
| 357 | return dummy; |
| 358 | } |
| 359 | |
| 360 | public Texture getHolofoil() { |
| 361 | if (holofoil == null) { |
no test coverage detected