[Bf-blender-cvs] [e9182a0f5d0] blender2.8: Fixup for Setup Tracking Scene

Dalai Felinto noreply at git.blender.org
Tue Aug 21 16:55:04 CEST 2018


Commit: e9182a0f5d0b1700e4bcdc11d0110ba7e9b97a0c
Author: Dalai Felinto
Date:   Tue Aug 21 11:52:26 2018 -0300
Branches: blender2.8
https://developer.blender.org/rBe9182a0f5d0b1700e4bcdc11d0110ba7e9b97a0c

Fixup for Setup Tracking Scene

Issues introduced on: 17c245e2945968e073731f1799c093b3d807f0a3
(own error for the records).

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

M	release/scripts/startup/bl_operators/clip.py

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

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



More information about the Bf-blender-cvs mailing list