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-19 17:53:30 +0300
committerConstantin Rahn <conz@vrchannel.de>2011-01-19 17:53:30 +0300
commita33eaf80bf6e061cd909d516b3b41736a8cdcecf (patch)
tree7d31fa6f4c486899a273d6bcaac02ea0cc419671
parent6fc3f7d09bd3a12933021d95342427ac63e99f9a (diff)
increased the Delay much more (now 1.5s).
Lower Delay will rise errors when rendering big images. My system Win7 64 (slow HD) reports following error on lower Delay: --- Reached EOF while decoding PNG Cannot open input file Cannot create backend data Unknown fileformat --- Maybe Delay should be bound to the imagesize. Or is there a better solution to wait for povray to finish the writing?
-rw-r--r--render_povray/render.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/render_povray/render.py b/render_povray/render.py
index 48b0bd71..5feb636f 100644
--- a/render_povray/render.py
+++ b/render_povray/render.py
@@ -1427,7 +1427,7 @@ def write_pov_ini(filename_ini, filename_pov, filename_image):
class PovrayRender(bpy.types.RenderEngine):
bl_idname = 'POVRAY_RENDER'
bl_label = 'POV-Ray 3.7'
- DELAY = 0.2
+ DELAY = 1.5
def _export(self, scene):
import tempfile