Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-04-04 11:15:45 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-04-04 11:15:45 +0300
commitf913e6909353aab51f2b1381799130be4f8b5625 (patch)
tree398965f09df63ff653845c22d138f8ff8f1ad5c7 /source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
parent4674e02562637f36a9900bff5f5f4acc9aff482d (diff)
Depsgraph: Add missing expansion od custom bone shapes
This was fixed in 2.8 branch but not in master.
Diffstat (limited to 'source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc b/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
index 0c7c3d13d93..b9a53c69070 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
@@ -284,6 +284,11 @@ void DepsgraphNodeBuilder::build_rig(Object *object)
}
}
+ /* Custom shape. */
+ if (pchan->custom != NULL) {
+ build_object(NULL, pchan->custom);
+ }
+
pchan_index++;
}
}