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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-16 21:54:43 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-16 21:54:43 +0400
commite5f544dd92704381bfd6f54a8024c62982a50448 (patch)
treee70032306b35a0742436d128e450130a89aec50b /intern/cycles/blender/addon
parent60bc63c7b8e308ad652eae750fcb932f3fc0218d (diff)
Cycles: add transparent shadow support, i.e. shadows through Transparent BSDF
shaders, enabled by default.
Diffstat (limited to 'intern/cycles/blender/addon')
-rw-r--r--intern/cycles/blender/addon/ui.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index d8f776b0114..10754ed6b9f 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -67,6 +67,7 @@ class CyclesRender_PT_integrator(CyclesButtonsPanel, Panel):
sub.label("Transparency:")
sub.prop(cscene, "transparent_max_bounces", text="Max")
sub.prop(cscene, "transparent_min_bounces", text="Min")
+ sub.prop(cscene, "use_transparent_shadows", text="Shadows")
sub.prop(cscene, "no_caustics")
col = split.column()