Fix T65889: Hair Particles not updating when using image sequence

This commit is contained in:
Sergey Sharybin 2020-05-28 10:46:04 +02:00
parent 806db47fd8
commit 1335f2d272
Notes: blender-bot 2023-02-14 02:10:48 +01:00
Referenced by issue #78687, Fluid Emission Image Sequence or Movie Texture Not Working
Referenced by issue #65889, Hair Particles not updating in Viewport when using image sequence textures to drive Hair Size
1 changed files with 5 additions and 0 deletions

View File

@ -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)