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:
authorSebastian Parborg <darkdefende@gmail.com>2019-05-07 18:34:28 +0300
committerSebastian Parborg <darkdefende@gmail.com>2019-05-07 18:37:05 +0300
commit50889ba6efbc304e5c6b516a0d102c3bdd7a79f9 (patch)
tree121890c117cc9105b0190d6405ff69e9be91eba6 /release
parentf08ee1fc40c09e7ffc028a097dda5d80436ce478 (diff)
Implement Push/Relax from rest pose.
Perviously it was only possible to interpolate from the breakdown poses. Now you can Push/Relax in regard to the rest pose as well. For this only one keyframe is needed while the old modes needs two.
Diffstat (limited to 'release')
-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 82b997427f4..33fc3ad28d6 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3028,6 +3028,8 @@ class VIEW3D_MT_pose_slide(Menu):
def draw(self, _context):
layout = self.layout
+ layout.operator("pose.push_rest")
+ layout.operator("pose.relax_rest")
layout.operator("pose.push")
layout.operator("pose.relax")
layout.operator("pose.breakdown")