Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Duroure <julien.duroure@gmail.com>2021-02-25 21:12:20 +0300
committerJulien Duroure <julien.duroure@gmail.com>2021-02-25 21:12:20 +0300
commit55ec46913b99253348d00360f8238aeca3c14825 (patch)
tree87853a61a9f1d6a41f0c9cf268be3c2a424fcf54 /io_scene_gltf2
parent0ad4a0c25dcda3fd8b9173d194a9cc6599780665 (diff)
glTF exporter: Increase maximal compression limit
Diffstat (limited to 'io_scene_gltf2')
-rwxr-xr-xio_scene_gltf2/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 352affa3..838dab78 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -15,7 +15,7 @@
bl_info = {
'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
- "version": (1, 6, 5),
+ "version": (1, 6, 6),
'blender': (2, 91, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -196,7 +196,7 @@ class ExportGLTF2_Base:
description='Compression level (0 = most speed, 6 = most compression, higher values currently not supported)',
default=6,
min=0,
- max=6
+ max=10
)
export_draco_position_quantization: IntProperty(