I am trying to use java.awt.Panel as a layer but is not working because i cant set the full transparency of the panel’s background.
I am trying this, but does not set the panel’s background alfha channel
Color cl = new Color(0,0,0,0.5f);
Panel.setBackground(cl);
the color still 100% black on panel’s background.
Thanks
Rodrigo.