From 1335f2d27221bed10a5ab74a06fdc96e6a8e4bb9 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 28 May 2020 10:46:04 +0200 Subject: Fix T65889: Hair Particles not updating when using image sequence --- source/blender/depsgraph/intern/builder/deg_builder_relations.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/depsgraph') diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc index db8d9ed516a..c98aab51654 100644 --- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc +++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc @@ -2428,6 +2428,11 @@ void DepsgraphRelationBuilder::build_texture(Tex *texture) ComponentKey animation_key(&texture->id, NodeType::ANIMATION); add_relation(animation_key, texture_key, "Datablock Animation"); } + + if (BKE_image_user_id_has_animation(&texture->id)) { + ComponentKey image_animation_key(&texture->id, NodeType::IMAGE_ANIMATION); + add_relation(image_animation_key, texture_key, "Datablock Image Animation"); + } } void DepsgraphRelationBuilder::build_image(Image *image) -- cgit v1.2.3