瀏覽代碼

Fixed a bug by inverting the conditional results around embed geometry tests

repsac 10 年之前
父節點
當前提交
da829c3c8d
共有 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
                 }