glTF exporter: Increase maximal compression limit

This commit is contained in:
Julien Duroure 2021-02-25 19:12:20 +01:00
parent 0ad4a0c25d
commit 55ec46913b
1 changed files with 2 additions and 2 deletions

View File

@ -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(