[Bf-blender-cvs] [3d3d491] master: Cycles: Fix wrong default value for volume samples

Sergey Sharybin noreply at git.blender.org
Wed Mar 2 10:54:12 CET 2016


Commit: 3d3d491d40b90c6a9af22ca1bb0e7f6dc3241e33
Author: Sergey Sharybin
Date:   Wed Mar 2 14:53:36 2016 +0500
Branches: master
https://developer.blender.org/rB3d3d491d40b90c6a9af22ca1bb0e7f6dc3241e33

Cycles: Fix wrong default value for volume samples

===================================================================

M	intern/cycles/blender/addon/properties.py

===================================================================

diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 5238a35..01aa619 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -238,7 +238,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
                 name="Volume Samples",
                 description="Number of volume scattering samples to render for each AA sample",
                 min=1, max=10000,
-                default=0,
+                default=1,
                 )
 
         cls.sampling_pattern = EnumProperty(




More information about the Bf-blender-cvs mailing list