Browse Source

Blender Exporter: Export Buffer Geometry by default.

Mr.doob 8 years ago
parent
commit
af9e25967a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/exporters/blender/addons/io_three/constants.py

+ 2 - 2
utils/exporters/blender/addons/io_three/constants.py

@@ -159,12 +159,12 @@ EXPORT_OPTIONS = {
     EMBED_TEXTURES: False,
     TEXTURE_FOLDER: '',
     LOGGING: DEBUG,
-    ENABLE_PRECISION: True,
+    ENABLE_PRECISION: False,
     PRECISION: DEFAULT_PRECISION,
     CUSTOM_PROPERTIES: False,
     EMBED_GEOMETRY: True,
     EMBED_ANIMATION: True,
-    GEOMETRY_TYPE: GEOMETRY,
+    GEOMETRY_TYPE: BUFFER_GEOMETRY,
     INFLUENCES_PER_VERTEX: 2,
     INDENT: True
 }