From 4b656b65f81d7af9f69a57351870d2eb46bbbb8f Mon Sep 17 00:00:00 2001 From: Julien Duroure Date: Sat, 8 Aug 2020 16:17:59 +0200 Subject: glTF importer: add KHR_mesh_quantization support (was already the case, but not said) --- io_scene_gltf2/__init__.py | 2 +- io_scene_gltf2/io/imp/gltf2_io_gltf.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3