[Bf-blender-cvs] [ab125f466c9] master: Fix T94751: ground created by Setup Tracking Scene not marked as Shadow Catcher

Germano Cavalcante noreply at git.blender.org
Tue Jan 11 23:02:52 CET 2022


Commit: ab125f466c975f80cc179f7e7a53e09feb868bfd
Author: Germano Cavalcante
Date:   Tue Jan 11 19:01:53 2022 -0300
Branches: master
https://developer.blender.org/rBab125f466c975f80cc179f7e7a53e09feb868bfd

Fix T94751: ground created by Setup Tracking Scene not marked as Shadow Catcher

Change that was missing in {rBca64bd0aacda}.

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

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 45d1ea98a8a..f0e099244f4 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -949,7 +949,7 @@ class CLIP_OT_setup_tracking_scene(Operator):
             """Make all the newly created and the old objects of a collection """ \
                 """to be properly setup for shadow catch"""
             for ob in collection.objects:
-                ob.cycles.is_shadow_catcher = True
+                ob.is_shadow_catcher = True
                 for child in collection.children:
                     setup_shadow_catcher_objects(child)



More information about the Bf-blender-cvs mailing list