Aframe screenshot is not showing elements
0
I'm attempting to take an equirectangular screenshot of a scene that has a sphere in the background with 360 video and some text/elements in the scene. I'm exporting the screenshot to use in a video, and I want the background transparent so it can get mixed with the video later, so I'm trying to change the background to green while I'm doing the screenshot and then putting it back to video. const scene = document.querySelector('a-scene') const panoSphere = document.querySelector('.panoSphere') panoSphere.setAttribute('material', 'color', '#00ff00') const equidataData = scene.components.screenshot.getCanvas('equirectangular') With this code, the background works and I get a green screenshot, however no other elements are shown. If I r