From a0fa404deb447e4d6c3053d26549814510141dab Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 19 Dec 2017 08:56:11 +0100 Subject: [PATCH] Fix T53547 for real now Original fix was assuming that particle init operation is updated on every frame, which is wrong behavior and that was fixed in previous commit to the original bugfix. --- .../blender/depsgraph/intern/builder/deg_builder_relations.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc index 19e95a3582f..10d4d7a2e9c 100644 --- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc +++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc @@ -1386,7 +1386,7 @@ void DepsgraphRelationBuilder::build_particles(Object *object) if (part->dup_ob->type == OB_MBALL) { ComponentKey dup_geometry_key(&part->dup_ob->id, DEG_NODE_TYPE_GEOMETRY); - add_relation(psys_key, + add_relation(obdata_ubereval_key, dup_geometry_key, "Particle MBall Visualization"); }