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>2019-10-03 22:35:32 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-10-03 22:35:32 +0300
commit6f5ccc338fbbc82cb06407bcbd81e2f8564fc1d1 (patch)
tree8de7d4193738295289480822bee93ca869063030
parentf18da173c7be65c0ec9ece608bdb0168247ebdaa (diff)
glTF exporter: remove debug print
-rwxr-xr-xio_scene_gltf2/__init__.py2
-rwxr-xr-xio_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index a6fabf10..6bd62dd5 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, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
- "version": (1, 0, 0),
+ "version": (1, 0, 1),
'blender': (2, 81, 6),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py b/io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py
index 59b30bd1..f514e913 100755
--- a/io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py
+++ b/io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py
@@ -86,10 +86,8 @@ def bonecache(func):
func.__bonecache = result
func.__current_action_name = args[6]
func.__current_armature_name = args[0]
- print("Using cache (first) for bone ", pose_bone_if_armature.name)
return result[args[7]][pose_bone_if_armature.name]
else:
- print("Using cache for bone ", pose_bone_if_armature.name)
return func.__bonecache[args[7]][pose_bone_if_armature.name]
return wrapper_bonecache