From d8743fc909dd04950aab14ee1eae6bb447e1a171 Mon Sep 17 00:00:00 2001 From: DavidBluecame Date: Sat, 18 Mar 2017 20:42:28 +0100 Subject: [PATCH] Bidirectional: replaced "deprecated" by "unstable" The bidirectional integrator will be supported again and will be improved in the future. However for now it's quite unstable and does not work correctly yet. --- prop/yaf_scene.py | 2 +- ui/properties_yaf_integrator.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/prop/yaf_scene.py b/prop/yaf_scene.py index 8b0ef477..63591fd1 100644 --- a/prop/yaf_scene.py +++ b/prop/yaf_scene.py @@ -1069,7 +1069,7 @@ def register(): ('Photon Mapping', "Photon Mapping", ""), ('Pathtracing', "Pathtracing", ""), ('Debug', "Debug", ""), - ('Bidirectional', "Bidirectional (DEPRECATED)", ""), + ('Bidirectional', "Bidirectional (unstable)", ""), ('SPPM', "SPPM", "") ), default='Direct Lighting') diff --git a/ui/properties_yaf_integrator.py b/ui/properties_yaf_integrator.py index e5bc6578..46d14d0f 100644 --- a/ui/properties_yaf_integrator.py +++ b/ui/properties_yaf_integrator.py @@ -144,10 +144,8 @@ def draw(self, context): elif scene.intg_light_method == "Bidirectional": col = layout.column() - col.label("The Bidirectional integrator is DEPRECATED.", icon="ERROR") + col.label("The Bidirectional integrator is UNSTABLE.", icon="ERROR") col.label("It might give unexpected and perhaps even incorrect render results.") - col.label("This integrator is no longer supported, will not receive any fixes/updates") - col.label("in the short/medium term and might be removed in future versions.") col.label("Use at your own risk.") if __name__ == "__main__": # only for live edit.