From 37b93b5df85c9e7acac989c86cf658bf8a0bc1e5 Mon Sep 17 00:00:00 2001 From: Christoph Lendenfeld Date: Fri, 18 Mar 2022 20:07:16 +0100 Subject: Animation: Blend To Default Implementation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a new operator to the Graph Editor that blends selected keyframes to their default value. The operator can be accessed from Key>Slider Operators>Blend To Default Value Reviewed by: Sybren A. Stüvel Differential Revision: https://developer.blender.org/D9376 Ref: D9367 --- release/scripts/startup/bl_ui/space_graph.py | 1 + 1 file changed, 1 insertion(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py index 6f9ef12c3b7..86d9771b638 100644 --- a/release/scripts/startup/bl_ui/space_graph.py +++ b/release/scripts/startup/bl_ui/space_graph.py @@ -332,6 +332,7 @@ class GRAPH_MT_slider(Menu): layout.operator("graph.breakdown", text="Breakdown") layout.operator("graph.blend_to_neighbor", text="Blend To Neighbor") + layout.operator("graph.blend_to_default", text="Blend To Default Value") class GRAPH_MT_view_pie(Menu): -- cgit v1.2.3