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-09-05 08:38:01 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-09-05 08:38:01 +0300
commit46b1ada7f5f2d396f712e9a1376922ca89475486 (patch)
tree12b7c7c398582fc8cd5fd59291f44db58a09d534 /io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py
parentffcecad3a8908db5037ac9474ab5524dadecc2cd (diff)
glTF exporter: fix typo in last commit, weird tab increment
Diffstat (limited to 'io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py')
-rwxr-xr-xio_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py b/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py
index 90bd3b75..b2d69ae9 100755
--- a/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py
+++ b/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py
@@ -200,7 +200,7 @@ def __get_channel_groups(blender_action: bpy.types.Action, blender_object: bpy.t
shape_key = blender_object.data.shape_keys.path_resolve(object_path)
if shape_key.mute is True:
continue
- target = blender_object.data.shape_keys
+ target = blender_object.data.shape_keys
except:
# Something is wrong, for example a bone animation is linked to an object mesh...
gltf2_io_debug.print_console("WARNING", "Animation target {} not found".format(object_path))