Mr.doob 3 лет назад
Родитель
Сommit
c15bbe117b
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      editor/js/Menubar.File.js

+ 2 - 2
editor/js/Menubar.File.js

@@ -253,7 +253,7 @@ function MenubarFile( editor ) {
 
 			saveArrayBuffer( result, 'scene.glb' );
 
-		}, { binary: true, animations: animations } );
+		}, undefined, { binary: true, animations: animations } );
 
 	} );
 	options.add( option );
@@ -276,7 +276,7 @@ function MenubarFile( editor ) {
 
 			saveString( JSON.stringify( result, null, 2 ), 'scene.gltf' );
 
-		}, { animations: animations } );
+		}, undefined, { animations: animations } );
 
 
 	} );