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:
authorGermano Cavalcante <germano.costa@ig.com.br>2022-01-12 01:01:53 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2022-01-12 01:02:04 +0300
commitab125f466c975f80cc179f7e7a53e09feb868bfd (patch)
tree5ccc4d9c57d3a8131e2debdc82942442980cce66
parent947dc219795b0d0c8f172f49c803272ed079384a (diff)
Fix T94751: ground created by Setup Tracking Scene not marked as Shadow Catcher
Change that was missing in {rBca64bd0aacda}.
-rw-r--r--release/scripts/startup/bl_operators/clip.py2
1 files changed, 1 insertions, 1 deletions
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)