Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-05-15 15:11:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-05-16 11:34:11 +0300
commite5c3ae31189b3acb54d33061da2bd27c3d0abad5 (patch)
treea53fe430313980bc37f98966d35d2c390cdbfb62 /object_carver
parent05baedacbfdb15b74a2c89a790e8b3f196ef1417 (diff)
Addons: Adopt for Dependency Graph API changes
Mainly search-and-replace approach. Tested the enabled-by-default export/import addons. Seems to work with an exception of X3D which is still referencing Blender Internal material properties. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4866
Diffstat (limited to 'object_carver')
-rw-r--r--object_carver/carver_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/object_carver/carver_utils.py b/object_carver/carver_utils.py
index 67c5769d..28dc93c4 100644
--- a/object_carver/carver_utils.py
+++ b/object_carver/carver_utils.py
@@ -399,7 +399,7 @@ def Picking(context, event):
ray_target = ray_origin + view_vector
def visible_objects_and_duplis():
- depsgraph = context.depsgraph
+ depsgraph = context.evaluated_depsgraph_get()
for dup in depsgraph.object_instances:
if dup.is_instance: # Real dupli instance
obj = dup.instance_object.original