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 /io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py
parentf18da173c7be65c0ec9ece608bdb0168247ebdaa (diff)
glTF exporter: remove debug print
Diffstat (limited to 'io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py')
-rwxr-xr-xio_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py2
1 files changed, 0 insertions, 2 deletions
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