瀏覽代碼

Editor: Fix usage of USDZExporter. (#25055)

Michael Herzog 2 年之前
父節點
當前提交
59020b2a90
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/js/Menubar.File.js

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

@@ -390,7 +390,7 @@ function MenubarFile( editor ) {
 
 		const exporter = new USDZExporter();
 
-		saveArrayBuffer( await exporter.parse( editor.scene, { binary: true } ), 'model.usdz' );
+		saveArrayBuffer( await exporter.parse( editor.scene ), 'model.usdz' );
 
 	} );
 	options.add( option );