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:
authorConstantin Rahn <conz@vrchannel.de>2011-01-21 20:52:36 +0300
committerConstantin Rahn <conz@vrchannel.de>2011-01-21 20:52:36 +0300
commit3bbbe213de76b46d91b1bd3bbbdf49900a5a5185 (patch)
tree23b41e9497df4abcf3a440b856213eb104aecdf4 /render_povray/ui.py
parent4ae49303d91ecada8836a4cf9852a3c5fd9a955c (diff)
Added some more parameter for Anti Aliasing
Diffstat (limited to 'render_povray/ui.py')
-rw-r--r--render_povray/ui.py17
1 files changed, 14 insertions, 3 deletions
diff --git a/render_povray/ui.py b/render_povray/ui.py
index 27444ab3..1e14519b 100644
--- a/render_povray/ui.py
+++ b/render_povray/ui.py
@@ -303,12 +303,23 @@ class RENDER_PT_povray_antialias(RenderButtonsPanel, bpy.types.Panel):
col = split.column()
col.prop(scene, "pov_antialias_method", text="")
col = split.column()
-
+ col.prop(scene, "pov_jitter_enable", text="Jitter")
+
split = layout.split()
col = split.column()
- col.prop(scene, "pov_antialias_depth", text="Depth")
+ col.prop(scene, "pov_antialias_depth", text="AA Depth")
+ sub = split.column()
+ sub.prop(scene, "pov_jitter_amount", text="Jitter Amount")
+ if scene.pov_jitter_enable:
+ sub.enabled = True
+ else:
+ sub.enabled = False
+
+ split = layout.split()
+ col = split.column()
+ col.prop(scene, "pov_antialias_threshold", text="AA Threshold")
col = split.column()
- col.prop(scene, "pov_antialias_threshold", text="Threshold")
+ col.prop(scene, "pov_antialias_gamma", text="AA Gamma")
class RENDER_PT_povray_radiosity(RenderButtonsPanel, bpy.types.Panel):