Skip to content
This repository has been archived by the owner on Jul 18, 2020. It is now read-only.

Commit

Permalink
Bidirectional: replaced "deprecated" by "unstable"
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
DavidBluecame committed Mar 18, 2017
1 parent b521835 commit d8743fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion prop/yaf_scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
4 changes: 1 addition & 3 deletions ui/properties_yaf_integrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit d8743fc

Please sign in to comment.