Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2020-09-23 11:47:27 +0300
committerBastien Montagne <bastien@blender.org>2020-09-23 12:07:03 +0300
commitc3a0618fbffffffcf5abbeed8de3f19d8a401db1 (patch)
treef3e607810277449efa988354c815260b7938e413 /release/scripts/startup
parent6fde0050c45af994d7f0de16622037bf28c938c8 (diff)
LibOverride: Add operator to convert a proxy object into an override.
In the end the process is surpringly simple, we only need to manually convert the proxy itself into an override (which is trivial), and then run common code with the default 'make override' operation. Fix T81059: Add operator to convert proxies to library overrides.
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 888b4a62139..bbe23bc8bbc 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2191,6 +2191,8 @@ class VIEW3D_MT_object_relations(Menu):
layout.operator("object.make_override_library", text="Make Library Override...")
+ layout.operator("object.convert_proxy_to_override")
+
layout.operator("object.make_dupli_face")
layout.separator()