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:
authorJacques Lucke <jacques@blender.org>2022-02-10 19:32:16 +0300
committerJacques Lucke <jacques@blender.org>2022-02-10 19:32:16 +0300
commit2cd1472f86dd0c3f8792f8d28b1238f9dffb3739 (patch)
treef12eedbb69cb5b426b8ff585390f09275c7fe737 /source/blender/depsgraph/intern
parent9a2b206639364fcc696b44879a715eaacc60347a (diff)
parent720d653b418bb5760c5891a2c8b74b72ea9889a9 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'source/blender/depsgraph/intern')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
index 26dd7bc1363..ac89b6b0198 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
@@ -1453,6 +1453,10 @@ void DepsgraphRelationBuilder::build_animation_images(ID *id)
OperationKey world_update_key(id, NodeType::SHADING, OperationCode::WORLD_UPDATE);
add_relation(world_update_key, image_animation_key, "World Update -> Image Animation");
}
+ else if (GS(id->name) == ID_NT) {
+ OperationKey ntree_output_key(id, NodeType::NTREE_OUTPUT, OperationCode::NTREE_OUTPUT);
+ add_relation(ntree_output_key, image_animation_key, "NTree Output -> Image Animation");
+ }
}
}