Is there a way to efficiently convert the active scene in threejs to a JSON object? The process seems to slow down as the models get larger, making it difficult to show a progress bar. I attempted sending the threejs scene to a web worker for conversion, but ran into issues transmitting the scene object. Is it feasible to send the threejs scene to a web worker, or is there an alternative promise-based implementation available for Object3d.toJSON()
?