[Bf-blender-cvs] [1265cf68197] cycles-x: Fix missing Noisy Shadow Catcher pass in Cycles X

Sergey Sharybin noreply at git.blender.org
Fri Jul 23 11:47:39 CEST 2021


Commit: 1265cf681976af7108269eff3535873dd1cf35ee
Author: Sergey Sharybin
Date:   Thu Jul 22 10:32:27 2021 +0200
Branches: cycles-x
https://developer.blender.org/rB1265cf681976af7108269eff3535873dd1cf35ee

Fix missing Noisy Shadow Catcher pass in Cycles X

Differential Revision: https://developer.blender.org/D11987

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

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

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

diff --git a/intern/cycles/blender/addon/engine.py b/intern/cycles/blender/addon/engine.py
index 68f9f51d47f..19e85bd8438 100644
--- a/intern/cycles/blender/addon/engine.py
+++ b/intern/cycles/blender/addon/engine.py
@@ -231,6 +231,8 @@ def list_render_passes(scene, srl):
     # Denoising passes.
     if (scene.cycles.use_denoising and crl.use_denoising) or crl.denoising_store_passes:
         yield ("Noisy Image", "RGBA", 'COLOR')
+        if crl.use_pass_shadow_catcher:
+            yield ("Noisy Shadow Catcher", "RGBA", 'COLOR')
         if crl.denoising_store_passes:
             yield ("Denoising Normal",          "XYZ", 'VECTOR')
             yield ("Denoising Albedo",          "RGB", 'COLOR')



More information about the Bf-blender-cvs mailing list