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-09-01 18:25:23 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2019-09-01 18:25:23 +0300
commitcbb11b1a597366deabfa1cac11989621bf9075c4 (patch)
treecd59142e11fe844dbb59af036a69f5f162ffbfb1 /render_povray/__init__.py
parent9780527eeed6523684327a6fc6a149a938ebd933 (diff)
+Better (faster) Radiosity Nearest Count default value
+render emitter for particles theoretically updated to 2.8 API
Diffstat (limited to 'render_povray/__init__.py')
-rw-r--r--render_povray/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index 5b7b332e..aa0d73e7 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -529,7 +529,7 @@ class RenderPovSettingsScene(PropertyGroup):
name="Nearest Count",
description="Number of old ambient values blended together to "
"create a new interpolated value",
- min=1, max=20, default=5)
+ min=1, max=20, default=1)
radio_normal: BoolProperty(
name="Normals", description="Radiosity estimation can be affected by normals",
@@ -1414,8 +1414,8 @@ class RenderPovSettingsMaterial(PropertyGroup):
refraction_type: EnumProperty(
items=[
- ("1", "Fake Caustics", "use fake caustics"),
- ("2", "Photons Caustics", "use photons for refractive caustics")],
+ ("1", "Z Transparency Fake Caustics", "use fake caustics"),
+ ("2", "Raytrace Photons Caustics", "use photons for refractive caustics")],
name="Refraction Type:",
description="use fake caustics (fast) or true photons for refractive Caustics",
default="1")