Przeglądaj źródła

fix typo in glTFExporter.ts

Nicholas Barlow 6 lat temu
rodzic
commit
a42255c098
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      serializers/src/glTF/2.0/glTFExporter.ts

+ 1 - 1
serializers/src/glTF/2.0/glTFExporter.ts

@@ -1196,7 +1196,7 @@ export class _Exporter {
                         let sideOrientation = babylonMaterial.sideOrientation;
 
                         // Only reverse the winding if we have a clockwise winding
-``                      if (sideOrientation === Material.ClockWiseSideOrientation) {
+                        if (sideOrientation === Material.ClockWiseSideOrientation) {
                             let byteOffset = indexBufferViewIndex != null ? this._bufferViews[indexBufferViewIndex].byteOffset : null;
                             if (byteOffset == null) { byteOffset = 0; }
                             let babylonIndices: Nullable<IndicesArray> = null;