I have a CubeTextureLoader in my threejs website to show some clouds as skybox: I'm trying to render them with a png, but they're still black and white. This is my renderer
const renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true, autoClear: true });
How can I have a skybox with alpha?
Thanks in advance, Simone