[Bf-blender-cvs] [1ace224c633] blender-v2.93-release: Fix: missing AO factor from Cyclest Fast GI panel

Brecht Van Lommel noreply at git.blender.org
Thu Apr 29 15:59:34 CEST 2021


Commit: 1ace224c633df1a00d1a73f18c579520fcc92411
Author: Brecht Van Lommel
Date:   Sat Apr 24 13:34:05 2021 +0200
Branches: blender-v2.93-release
https://developer.blender.org/rB1ace224c633df1a00d1a73f18c579520fcc92411

Fix: missing AO factor from Cyclest Fast GI panel

The AO distance was already there, but I forgot the factor also has an impact
on this.

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

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

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

diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 73bc114893a..0b7f548c792 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -552,6 +552,7 @@ class CYCLES_RENDER_PT_light_paths_fast_gi(CyclesButtonsPanel, Panel):
 
         if world:
           light = world.light_settings
+          sub.prop(light, "ao_factor", text="AO Factor")
           layout.prop(light, "distance", text="AO Distance")



More information about the Bf-blender-cvs mailing list