소스 검색

Add missing white spaces

noalak 5 년 전
부모
커밋
f354f64c1d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      serializers/src/glTF/2.0/glTFExporter.ts

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

@@ -1309,7 +1309,7 @@ export class _Exporter {
      */
     private isNodeConvertingToLeftHanded(node: Node): boolean {
         if (node instanceof TransformNode &&
-            (!node.position.equalsToFloats(0,0,0) ||
+            (!node.position.equalsToFloats(0, 0, 0) ||
             (!node.rotationQuaternion && node.rotation && (node.rotation.x != 0 || node.rotation.z != 0 || Math.abs(node.rotation.y - Math.PI) > Epsilon)) || // rotation Quaternion has priority over Vector3
             (node.rotationQuaternion && !node.rotationQuaternion.equals(new Quaternion(0, 1, 0, 0))) ||
             !node.scaling.equalsToFloats(1, 1, -1))) {