[Bf-extensions-cvs] [4b656b65] blender-v2.90-release: glTF importer: add KHR_mesh_quantization support (was already the case, but not said)

Julien Duroure noreply at git.blender.org
Sat Aug 8 16:18:26 CEST 2020


Commit: 4b656b65f81d7af9f69a57351870d2eb46bbbb8f
Author: Julien Duroure
Date:   Sat Aug 8 16:17:59 2020 +0200
Branches: blender-v2.90-release
https://developer.blender.org/rBA4b656b65f81d7af9f69a57351870d2eb46bbbb8f

glTF importer: add KHR_mesh_quantization support (was already the case, but not said)

===================================================================

M	io_scene_gltf2/__init__.py
M	io_scene_gltf2/io/imp/gltf2_io_gltf.py

===================================================================

diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 5a177494..89478bd6 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, 3, 47),
+    "version": (1, 3, 48),
     'blender': (2, 90, 0),
     'location': 'File > Import-Export',
     'description': 'Import-Export as glTF 2.0',
diff --git a/io_scene_gltf2/io/imp/gltf2_io_gltf.py b/io_scene_gltf2/io/imp/gltf2_io_gltf.py
index c494e966..49eee2d5 100755
--- a/io_scene_gltf2/io/imp/gltf2_io_gltf.py
+++ b/io_scene_gltf2/io/imp/gltf2_io_gltf.py
@@ -48,6 +48,7 @@ class glTFImporter():
             'KHR_materials_unlit',
             'KHR_texture_transform',
             'KHR_materials_clearcoat',
+            'KHR_mesh_quantization',
         ]
 
         # TODO : merge with io_constants



More information about the Bf-extensions-cvs mailing list