From 077f8520dae0425a481cbe82a3bcba902b93a0b0 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 31 Mar 2011 01:37:42 +0000 Subject: Pose Propagate - Further Tweaks: - Pose Propagate and Pose Sliding tools now work in the same way as Pose Library previewing, with regards to selections. If some bones are selected, then only those will be affected. But if no bones are selected, then the whole rig gets affected. - Added a "On Selected Markers" option, which only propagates poses to frames where there's a selected marker. Animators can combine this with a "select markers whose name contains..." operator to get an effective way to manage hand-keyed walk cycles, etc. --- release/scripts/startup/bl_ui/space_view3d.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'release/scripts') diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py index f026a26c984..13270a8c6fd 100644 --- a/release/scripts/startup/bl_ui/space_view3d.py +++ b/release/scripts/startup/bl_ui/space_view3d.py @@ -1258,9 +1258,16 @@ class VIEW3D_MT_pose_propagate(bpy.types.Menu): layout = self.layout layout.operator("pose.propagate") + + layout.separator() + layout.operator("pose.propagate", text="To Next Keyframe").mode = 'NEXT_KEY' layout.operator("pose.propagate", text="To Last Keyframe (Make Cyclic)").mode = 'LAST_KEY' + layout.separator() + + layout.operator("pose.propagate", text="On Selected Markers").mode = 'SELECTED_MARKERS' + class VIEW3D_MT_pose_library(bpy.types.Menu): bl_label = "Pose Library" -- cgit v1.2.3