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.
This commit is contained in:
Constantin Rahn
2011-01-24 11:44:01 +00:00
parent b473917eb2
commit cd36f92c78
3 changed files with 98 additions and 50 deletions

View File

@ -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):