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:
authorJoshua Leung <aligorith@gmail.com>2011-03-31 04:45:52 +0400
committerJoshua Leung <aligorith@gmail.com>2011-03-31 04:45:52 +0400
commit531d3e410f23115347b4f9304eb99d32c137fe10 (patch)
tree45dbe70795315fc5ab9aa7e1fcb2b6b7edaf1a26 /release
parent9c01b941485d2a70d9fc54361ac41b430989a466 (diff)
Propagate Pose Tweaks:
- Renamed "Last Keyframe" mode to "Before End". This mode still just copies the pose to all keyframes starting from the current frame until the last one encountered per F-Curve - "Last Keyframe" mode (new one) now copies the pose to the last keyframe. This is useful for making animations cyclic (i.e. go to first keyframe, edit, then Pose->Propagate->To Last Keyframe (Make Cyclic))
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index fc316779cfb..f026a26c984 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1259,6 +1259,7 @@ class VIEW3D_MT_pose_propagate(bpy.types.Menu):
layout.operator("pose.propagate")
layout.operator("pose.propagate", text="To Next Keyframe").mode = 'NEXT_KEY'
+ layout.operator("pose.propagate", text="To Last Keyframe (Make Cyclic)").mode = 'LAST_KEY'
class VIEW3D_MT_pose_library(bpy.types.Menu):