Explorar el Código

use more descriptive labels for geometry exporters

Sukolsak Sakshuwong hace 3 años
padre
commit
e0c08e89d0
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      src/extensions/geo-export/controls.ts

+ 5 - 1
src/extensions/geo-export/controls.ts

@@ -16,7 +16,11 @@ import { GlbExporter } from './glb-exporter';
 import { StlExporter } from './stl-exporter';
 
 export const GeometryParams = {
-    format: PD.Select('obj', [['obj', 'OBJ + MTL'], ['glb', 'GLB'], ['stl', 'STL']])
+    format: PD.Select('glb', [
+        ['glb', 'glTF 2.0 Binary (.glb)'],
+        ['stl', 'Stl (.stl)'],
+        ['obj', 'Wavefront (.obj)']
+    ])
 };
 
 export class GeometryControls extends PluginComponent {