From ab125f466c975f80cc179f7e7a53e09feb868bfd Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Tue, 11 Jan 2022 19:01:53 -0300 Subject: Fix T94751: ground created by Setup Tracking Scene not marked as Shadow Catcher Change that was missing in {rBca64bd0aacda}. --- release/scripts/startup/bl_operators/clip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3