From ea6cd1c8f05b27a81e835251e779f047a3488203 Mon Sep 17 00:00:00 2001 From: Pablo Dobarro Date: Fri, 18 Sep 2020 19:20:22 +0200 Subject: Overlay: Fade Inactive Geometry This implements a new overlay that blends the bakground color over the objects that are not in the same mode as the active object, making them fade with the background. This is especially needed for sculpt mode as there is no other overlay or indication in the viewport to display which object is active. This is intended to be used with D7510 in order to have a faster workflow when sculpting models with multiple objects. Reviewed By: fclem Differential Revision: https://developer.blender.org/D8679 --- release/scripts/addons | 2 +- release/scripts/startup/bl_ui/space_view3d.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'release/scripts') diff --git a/release/scripts/addons b/release/scripts/addons index 49c39f59fbc..1f043682f95 160000 --- a/release/scripts/addons +++ b/release/scripts/addons @@ -1 +1 @@ -Subproject commit 49c39f59fbc464dd34388990123f271c39eacbf4 +Subproject commit 1f043682f9568fed02e3b877b31e8244b1b7a5c2 diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py index 269237e804c..9cf61dc297a 100644 --- a/release/scripts/startup/bl_ui/space_view3d.py +++ b/release/scripts/startup/bl_ui/space_view3d.py @@ -6122,6 +6122,10 @@ class VIEW3D_PT_overlay_geometry(Panel): col.active = display_all col.prop(overlay, "show_face_orientation") + row = col.row(align=True) + row.prop(overlay, "show_fade_inactive", text="") + sub = row.row() + sub.prop(overlay, "fade_inactive_alpha", text="Fade Inactive Geometry") # sub.prop(overlay, "show_onion_skins") -- cgit v1.2.3