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-24 14:44:01 +0300
committerConstantin Rahn <conz@vrchannel.de>2011-01-24 14:44:01 +0300
commitcd36f92c7890474dd6a08a10e18bd426e784c15c (patch)
tree09030e1470486dc89fdab5de46ebd9a2f026f075 /render_povray/ui.py
parentb473917eb208c43bd580b48d84df876a18b4a057 (diff)
Optimized export to OS Tempfiles.
The output to Tempfiles no longer exports comments, indentations or LFs (in lists). New option in Export settings to deactivate LF (line brakes) in lists. Fixed a material export for normal maps. Was exported two times. Paths to images are now realpaths, no /../ in absolut paths.
Diffstat (limited to 'render_povray/ui.py')
-rw-r--r--render_povray/ui.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/render_povray/ui.py b/render_povray/ui.py
index 678314f1..722622e1 100644
--- a/render_povray/ui.py
+++ b/render_povray/ui.py
@@ -181,6 +181,8 @@ class RENDER_PT_povray_export_settings(RenderButtonsPanel, bpy.types.Panel):
split = layout.split()
col = split.column()
col.prop(scene, "pov_comments_enable", text="Comments")
+ col = split.column()
+ col.prop(scene, "pov_list_lf_enable", text="Line brakes in lists")
class RENDER_PT_povray_render_settings(RenderButtonsPanel, bpy.types.Panel):