Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Raybaud <mauriceraybaud@hotmail.fr>2019-10-04 12:28:23 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2019-10-04 12:28:23 +0300
commitd39c2b61470059dd31cf688441c817a875b928cc (patch)
tree1156b53a25ce765673684c2bb30c18d27ea43123
parent6f5ccc338fbbc82cb06407bcbd81e2f8564fc1d1 (diff)
corrected Ztransp enum description
adapted former BI ZBuffer transp to use ior of 1
-rw-r--r--render_povray/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index 02d08cec..30f18340 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -1188,7 +1188,7 @@ class RenderPovSettingsMaterial(PropertyGroup):
name="Specular Shader Model",
description="Method to use for rendering transparency",
items=(("MASK", "Mask", "Mask the background"),
- ("Z_TRANSPARENCY", "Z Transparency", "Use alpha buffer for transparent faces"),#TO DEPRECATE
+ ("Z_TRANSPARENCY", "Z Transparency", "Use an ior of 1 for transparent faces"),
("RAYTRACE", "Raytrace", "Use raytracing for transparent refraction rendering")),
default="MASK")