Hi!
found a new issue with the latest Firefox version (141.0.2)
|
if ( canvas.toBlob !== undefined ) { |
this preventing the GLTFExporter to export GLB properly
I suggest changing the line to
if ( canvas.toBlob !== undefined && !canvas.convertToBlob ) {
...
}
Cheers!