Ver código fonte

Editor: Clean up.

Mr.doob 3 anos atrás
pai
commit
c15bbe117b
1 arquivos alterados com 2 adições e 2 exclusões
  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 } );
 
 
 	} );