Hello all,
I’m researching the possibility to overlay View3D on top of HTML content. That means I need View3D to have a transparent background.
I tried setting the backgroundAlpha property of View3D to 0, but that doesn’t have any effect (background is still black).
I also tried using a transparent bitmap as the background, like this:
view.background = new BitmapTexture(new BitmapData(64, 64, true, 0x00000000));
but that has the same effect: the background remains black with alpha = 1.
Is there any possibility to do this?
Thanks in advance!