[Bf-blender-cvs] [e29a6f739d] master: Fix T50512: Linked Backround scene with animation not updating with new depsgraph

Sergey Sharybin noreply at git.blender.org
Wed Jan 25 12:32:05 CET 2017


Commit: e29a6f739de36f4d33cd37181a946345bd26503d
Author: Sergey Sharybin
Date:   Wed Jan 25 12:30:29 2017 +0100
Branches: master
https://developer.blender.org/rBe29a6f739de36f4d33cd37181a946345bd26503d

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 5742941735..af9eda1b5c 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
@@ -70,7 +70,7 @@ namespace DEG {
 void DepsgraphRelationBuilder::build_scene(Main *bmain, Scene *scene)
 {
 	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