Selaa lähdekoodia

Add field to IExportOptions

Nicholas Barlow 5 vuotta sitten
vanhempi
commit
8941034365
1 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa
  1. 5 0
      serializers/src/glTF/2.0/glTFSerializer.ts

+ 5 - 0
serializers/src/glTF/2.0/glTFSerializer.ts

@@ -30,6 +30,11 @@ export interface IExportOptions {
      * Begin serialization without waiting for the scene to be ready
      */
     exportWithoutWaitingForScene?: boolean;
+
+    /**
+     * Indicates if coordinate system swapping root nodes should be included in export
+     */
+    includeCoordinateSystemConversionNodes?: boolean;
 }
 
 /**