(Texture image, float x, float y, float w, float h)
| 1408 | |
| 1409 | //draw vertically flipped image |
| 1410 | public void drawFlippedImage(Texture image, float x, float y, float w, float h) { |
| 1411 | batch.draw(image, adjustX(x), adjustY(y, h), w, h, 0, 0, image.getWidth(), image.getHeight(), false, true); |
| 1412 | } |
| 1413 | |
| 1414 | public void drawImageWithTransforms(TextureRegion image, float x, float y, float w, float h, float rotation, boolean flipX, boolean flipY) { |
| 1415 | float originX = x + w / 2; |