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>2010-03-25 14:42:02 +0300
committerJoshua Leung <aligorith@gmail.com>2010-03-25 14:42:02 +0300
commit535bce8cf1fd581ff450069a57612b3ed4ccfec2 (patch)
tree849294cf0d36791d2cd110d76b3ec2277549fd22 /source/blender/editors/space_nla
parentb88278b62b676765c03a94dd739ace73b582cea7 (diff)
Adding menu entries for the new hotkeys (change keying set)
Diffstat (limited to 'source/blender/editors/space_nla')
-rw-r--r--source/blender/editors/space_nla/nla_edit.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/source/blender/editors/space_nla/nla_edit.c b/source/blender/editors/space_nla/nla_edit.c
index 5eac0a624a9..37961ea4f03 100644
--- a/source/blender/editors/space_nla/nla_edit.c
+++ b/source/blender/editors/space_nla/nla_edit.c
@@ -914,7 +914,16 @@ static int nlaedit_bake_exec (bContext *C, wmOperator *op)
/* for each AnimData block, bake strips to animdata... */
for (ale= anim_data.first; ale; ale= ale->next) {
- // FIXME
+ AnimData *adt = (AnimData *)ale->data;
+
+ /* if animdata currently has an action, 'push down' this onto the stack first */
+ BKE_nla_action_pushdown(adt);
+
+ /* temporarily mute the action, and start keying to it */
+
+ /* start keying... */
+
+ /* unmute the action */
}
/* free temp data */