[Bf-blender-cvs] [ef174481c89] soc-2022-many-lights-sampling: Fix: light tree splitting threshold description error

Jeffrey Liu noreply at git.blender.org
Mon Aug 1 17:44:56 CEST 2022


Commit: ef174481c89ffc1169ae809850ec028cf8468c99
Author: Jeffrey Liu
Date:   Mon Aug 1 11:44:50 2022 -0400
Branches: soc-2022-many-lights-sampling
https://developer.blender.org/rBef174481c89ffc1169ae809850ec028cf8468c99

Fix: light tree splitting threshold description error

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

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

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

diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 4816a2a6854..09a1dfe8e7b 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -481,7 +481,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
     splitting_threshold: FloatProperty(
         name="Splitting",
         description="Amount of light tree emitters to consider at a time, from one light at 0.0, "
-        "to adaptively more lights as needed, to all branches at 1.0"
+        "to adaptively more lights as needed, to all branches at 1.0",
         min=0.0, max=1.0,
         default=0.85,
     )



More information about the Bf-blender-cvs mailing list