From 50889ba6efbc304e5c6b516a0d102c3bdd7a79f9 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Tue, 7 May 2019 17:34:28 +0200 Subject: 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. --- source/blender/editors/armature/armature_ops.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/editors/armature/armature_ops.c') diff --git a/source/blender/editors/armature/armature_ops.c b/source/blender/editors/armature/armature_ops.c index b53ae813f10..a29d0f5f158 100644 --- a/source/blender/editors/armature/armature_ops.c +++ b/source/blender/editors/armature/armature_ops.c @@ -146,6 +146,8 @@ void ED_operatortypes_armature(void) /* POSE SLIDING */ WM_operatortype_append(POSE_OT_push); WM_operatortype_append(POSE_OT_relax); + WM_operatortype_append(POSE_OT_push_rest); + WM_operatortype_append(POSE_OT_relax_rest); WM_operatortype_append(POSE_OT_breakdown); } -- cgit v1.2.3