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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-11-09 17:57:09 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-11-09 17:57:09 +0400
commitdc5ba03945c9f9cc8cbc93c91ff872a29c38659c (patch)
tree0aa4387b569001a94d416aedbffbe1e6f7549338 /source/blender/blenkernel/intern/object.c
parent079a0a30e49c036c1ce4425c949e0c370a91492b (diff)
Fix #33123: lamp nodes drivers not working, now uses same hacks as material
to work around dependency graph limitations.
Diffstat (limited to 'source/blender/blenkernel/intern/object.c')
-rw-r--r--source/blender/blenkernel/intern/object.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c
index 0611e84bdf3..6ec173a5908 100644
--- a/source/blender/blenkernel/intern/object.c
+++ b/source/blender/blenkernel/intern/object.c
@@ -2654,6 +2654,8 @@ void BKE_object_handle_update(Scene *scene, Object *ob)
}
}
}
+ else if (ob->type == OB_LAMP)
+ lamp_drivers_update(scene, ob->data, ctime);
/* particles */
if (ob->particlesystem.first) {