Hello and today my question is why if I flip an image, this doesn’t rotate? How can I rotate a flipped image?
Flipped image, it doesnt’ rotate.
image.setRotation((float)angle);
flipped = flip;
//image.getFlippedCopy(flip, false).draw(position.getX() - camera.getX(), position.getY() - camera.getY(), scale);
Not flipped image, it rotates perfectly
image.setRotation((float)angle);
flipped = flip;
image.draw(position.getX() - camera.getX(), position.getY() - camera.getY(), scale);