From 815ca2310fb4a1cb27befdef04842f2bf6a9ea51 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 19 Sep 2019 15:46:50 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20part=20of=20T68666:=20Animated=20mesh=20U?= =?UTF-8?q?Vs,=20vertex=20colors=20don=E2=80=99t=20update=20on=20time=20ch?= =?UTF-8?q?ange?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/blender/depsgraph/intern/builder/deg_builder_rna.cc | 4 +++- source/blender/makesrna/RNA_access.h | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) 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. */ diff --git a/source/blender/makesrna/RNA_access.h b/source/blender/makesrna/RNA_access.h index f9f05348c5c..61c8eec7a72 100644 --- a/source/blender/makesrna/RNA_access.h +++ b/source/blender/makesrna/RNA_access.h @@ -412,6 +412,7 @@ extern StructRNA RNA_MeshTextureFace; extern StructRNA RNA_MeshTextureFaceLayer; extern StructRNA RNA_MeshTexturePoly; extern StructRNA RNA_MeshTexturePolyLayer; +extern StructRNA RNA_MeshUVLoop; extern StructRNA RNA_MeshVertex; extern StructRNA RNA_MessageSensor; extern StructRNA RNA_MetaBall;