Thanks,
here is the example. When the opacity is set, the PMA images look over saturated.
Loading Image
I realized what was the problem... For the calculation of transparency (50%) I had to put:
batch.setColor(col.r * 0.5f, col.g * 0.5f, col.b * 0.5f,col.a * 0.5f);
insted of
batch.setColor(col.r, col.g, col.b, 0.5f);
Since I used the IsometricTiledMapRenderer, I modified the color calculation to:
float color = Color.toFloatBits(batchColor.r * layer.getOpacity() * cell.getOpacity(), batchColor.g * layer.getOpacity() * cell.getOpacity(), batchColor.b * layer.getOpacity() * cell.getOpacity(), batchColor.a * layer.getOpacity() * cell.getOpacity());
And now seems to me that is rendering ok.
Anyhow, thanks for help!
Hvala!