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>2019-09-19 16:46:50 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-09-19 16:56:02 +0300
commit815ca2310fb4a1cb27befdef04842f2bf6a9ea51 (patch)
tree3e1586c025814d31ef4e6761410697cc95ba6db5 /source/blender/depsgraph/intern/builder/deg_builder_rna.cc
parent34143e45104b296ece09c646ea3fb0d8bb24c519 (diff)
Fix part of T68666: Animated mesh UVs, vertex colors don’t update on time change
Diffstat (limited to 'source/blender/depsgraph/intern/builder/deg_builder_rna.cc')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_rna.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_rna.cc b/source/blender/depsgraph/intern/builder/deg_builder_rna.cc
index e53ac40f196..3620c82d4b3 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_rna.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_rna.cc
@@ -280,7 +280,9 @@ RNANodeIdentifier RNANodeQuery::construct_node_identifier(const PointerRNA *ptr,
else if (RNA_struct_is_a(ptr->type, &RNA_Mesh) || RNA_struct_is_a(ptr->type, &RNA_Modifier) ||
RNA_struct_is_a(ptr->type, &RNA_GpencilModifier) ||
RNA_struct_is_a(ptr->type, &RNA_Spline) || RNA_struct_is_a(ptr->type, &RNA_TextBox) ||
- RNA_struct_is_a(ptr->type, &RNA_GPencilLayer)) {
+ RNA_struct_is_a(ptr->type, &RNA_GPencilLayer) ||
+ RNA_struct_is_a(ptr->type, &RNA_MeshUVLoop) ||
+ RNA_struct_is_a(ptr->type, &RNA_MeshLoopColorLayer)) {
/* When modifier is used as FROM operation this is likely referencing to
* the property (for example, modifier's influence).
* But when it's used as TO operation, this is geometry component. */