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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-09-19 18:20:39 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-09-19 18:22:49 +0300
commit08b0c08577e677b5cd8168db1b67271345202531 (patch)
treef254b07952bff2ad50a7cb9fb98314e926f47597 /source/blender/depsgraph/intern/builder/deg_builder_rna.cc
parent2480c9236fd43907b81053616b23c155970a9cca (diff)
Fix the rest of T68666: Animated mesh UVs, vertex colors don’t update on
time change followup to 815ca2310fb4, this one fixes the RNA_MeshLoopColor case, adds RNA_VertexGroupElement and RNA_LatticePoint. coop with @sergey, thx. Fixes T68666
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 3620c82d4b3..180499519f6 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_rna.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_rna.cc
@@ -281,8 +281,10 @@ RNANodeIdentifier RNANodeQuery::construct_node_identifier(const PointerRNA *ptr,
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_LatticePoint) ||
RNA_struct_is_a(ptr->type, &RNA_MeshUVLoop) ||
- RNA_struct_is_a(ptr->type, &RNA_MeshLoopColorLayer)) {
+ RNA_struct_is_a(ptr->type, &RNA_MeshLoopColor) ||
+ RNA_struct_is_a(ptr->type, &RNA_VertexGroupElement)) {
/* 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. */