소스 검색

Merge pull request #6184 from repsac/io_three

Fixed a bug by inverting the conditional results around embed geometry tests
Mr.doob 10 년 전
부모
커밋
a8c69608ec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      utils/exporters/blender/addons/io_three/exporter/geometry.py

+ 1 - 1
utils/exporters/blender/addons/io_three/exporter/geometry.py

@@ -335,7 +335,7 @@ class Geometry(base_classes.BaseNode):
                 constants.METADATA: self.metadata
             })
         else:
-            if self.options.get(constants.EMBED_GEOMETRY):
+            if self.options.get(constants.EMBED_GEOMETRY, True):
                 data[constants.DATA] = {
                     constants.ATTRIBUTES: component_data
                 }