From bb2648ebf0022186bdd27e451194388d1fd4cce0 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Fri, 25 Jun 2021 17:12:10 +0200 Subject: Outliner: View Layers filter for View Layer Mode This option allow users to see the view layer in context to the others. It is particularly useful to see which view layers have which collections enabled, and their render settings (holdout, ...). This option is off by default. Differential Revision: https://developer.blender.org/D11708 --- release/scripts/startup/bl_ui/space_outliner.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'release/scripts/startup') diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py index 6eafa570f4c..7a694108e14 100644 --- a/release/scripts/startup/bl_ui/space_outliner.py +++ b/release/scripts/startup/bl_ui/space_outliner.py @@ -369,6 +369,10 @@ class OUTLINER_PT_filter(Panel): col = layout.column(align=True) + row = col.row() + row.label(icon='RENDERLAYERS') + row.prop(space, "use_filter_view_layers", text="All View Layers") + row = col.row() row.label(icon='OUTLINER_COLLECTION') row.prop(space, "use_filter_collection", text="Collections") -- cgit v1.2.3