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:
authorChristoph Lendenfeld <chris.lend@gmx.at>2022-03-18 22:07:16 +0300
committerChristoph Lendenfeld <chris.lend@gmx.at>2022-03-18 22:07:16 +0300
commit37b93b5df85c9e7acac989c86cf658bf8a0bc1e5 (patch)
tree46fd200a7d96537f0c97f2c4cdff0cefc713fcc9 /release
parent63f9cb5a0b5930a67c6fa8db833293f21b57ff63 (diff)
Animation: Blend To Default Implementation
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
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py1
1 files changed, 1 insertions, 0 deletions
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):