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>2017-12-19 10:56:11 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-19 10:56:11 +0300
commita0fa404deb447e4d6c3053d26549814510141dab (patch)
tree32ca3c11644334d5f5949daf86e151c1d2afe5e3 /source/blender/depsgraph
parente418c858ab85a28f312ffc8a3b2f625438558472 (diff)
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.
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.cc2
1 files changed, 1 insertions, 1 deletions
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");
}