Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-04-24 14:34:05 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-04-29 16:58:51 +0300
commit1ace224c633df1a00d1a73f18c579520fcc92411 (patch)
tree6c6d4a0686e4dbc75ccf5ac1ae6fafa5b8c3d25b /intern
parentd8cdc80263e2d0ebab565346e131c3829f527f44 (diff)
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.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/ui.py1
1 files changed, 1 insertions, 0 deletions
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")