Fix T72143: editing image frame start/offset does not update in Eevee

This commit is contained in:
Brecht Van Lommel
2020-01-28 17:48:30 +01:00
parent 3fd4c88e3a
commit 5d36a2e587

View File

@@ -1382,6 +1382,8 @@ void DepsgraphRelationBuilder::build_animation_images(ID *id)
/* TODO: can we check for existence of node for performance? */
if (BKE_image_user_id_has_animation(id)) {
OperationKey image_animation_key(id, NodeType::ANIMATION, OperationCode::IMAGE_ANIMATION);
ComponentKey cow_key(id, NodeType::COPY_ON_WRITE);
add_relation(cow_key, image_animation_key, "CoW -> Image Animation");
TimeSourceKey time_src_key;
add_relation(time_src_key, image_animation_key, "TimeSrc -> Image Animation");
}