[Bf-blender-cvs] [e89145efd3] blender-v2.78c-release: Fix T50512: Linked Backround scene with animation not updating with new depsgraph

Sergey Sharybin noreply at git.blender.org
Wed Feb 22 16:50:24 CET 2017


Commit: e89145efd3f3bd42499681823a3c67b217550036
Author: Sergey Sharybin
Date:   Wed Jan 25 12:30:29 2017 +0100
Branches: blender-v2.78c-release
https://developer.blender.org/rBe89145efd3f3bd42499681823a3c67b217550036

Fix T50512: Linked Backround scene with animation not updating with new depsgraph

Was missing relations for the set scenes.

Perhaps not ideal solution, but should be good enough for now.

===================================================================

M	source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc

===================================================================

diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
index 6b51a957da..a0e9e476a2 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
@@ -82,7 +82,7 @@ void DepsgraphRelationBuilder::build_scene(Main *bmain, Scene *scene)
 	} FOREACH_NODETREE_END
 
 	if (scene->set) {
-		// TODO: link set to scene, especially our timesource...
+		build_scene(bmain, scene->set);
 	}
 
 	/* scene objects */




More information about the Bf-blender-cvs mailing list