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>2020-07-21 21:21:30 +0300
committerJulien Duroure <julien.duroure@gmail.com>2020-07-21 21:21:30 +0300
commitbb4dc6f1daab2cc19c79e981222387069fb97ec4 (patch)
tree49b2c2cbb64316ac62229cdf014c7e91acd71c34 /io_scene_gltf2/io/imp/gltf2_io_gltf.py
parent3ea1673580ab68ecb713da3233a4f6beaafff5d9 (diff)
glTF importer: performance: rewrite importer using numpy
Thanks scurest!
Diffstat (limited to 'io_scene_gltf2/io/imp/gltf2_io_gltf.py')
-rwxr-xr-xio_scene_gltf2/io/imp/gltf2_io_gltf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/io_scene_gltf2/io/imp/gltf2_io_gltf.py b/io_scene_gltf2/io/imp/gltf2_io_gltf.py
index e63f1f55..c494e966 100755
--- a/io_scene_gltf2/io/imp/gltf2_io_gltf.py
+++ b/io_scene_gltf2/io/imp/gltf2_io_gltf.py
@@ -32,6 +32,7 @@ class glTFImporter():
self.glb_buffer = None
self.buffers = {}
self.accessor_cache = {}
+ self.decode_accessor_cache = {}
if 'loglevel' not in self.import_settings.keys():
self.import_settings['loglevel'] = logging.ERROR