浏览代码

Add field to IExportOptions

Nicholas Barlow 5 年之前
父节点
当前提交
8941034365
共有 1 个文件被更改,包括 5 次插入0 次删除
  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;
 }
 
 /**