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:
-rw-r--r--release/scripts/startup/bl_operators/clip.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index 42e8b7a94f1..c9499388449 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -641,7 +641,7 @@ class CLIP_OT_setup_tracking_scene(Operator):
master_collection = context.scene.collection
collection = bpy.data.collections.get(collection_name)
- if collection.library:
+ if collection and collection.library:
# We need a local collection instead.
collection = None
@@ -965,7 +965,7 @@ class CLIP_OT_setup_tracking_scene(Operator):
# And set everything on background layer to shadow catcher.
if hasattr(scene, "cycles"):
- self.setup_shadow_catcher_collection(bg_coll)
+ setup_shadow_catcher_objects(bg_coll)
def execute(self, context):
scene = context.scene