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>2015-02-27 07:06:44 +0300
committerJoshua Leung <aligorith@gmail.com>2015-02-28 16:34:41 +0300
commitb28a24091facf64c93b5eee89d6595f32354545b (patch)
tree2a40d6c2496f64de74f964e8c49904d103c6ce2b /source/blender/editors/space_action/action_intern.h
parentcec1691a91e90fafe336b708cbcd19ebd249f58d (diff)
Action Editor: Added "Push Down" operator to send the current action on to the NLA Stack
This commit exposes the "Push Down" button/functionality found in the NLA Editor to the Action Editor, so that actions can be added NLA Stack from here too. The main point of this for now is to make the whole layered-animation workflow nicer more efficient, but not requiring the second editor be visible in common cases. It also conveniently sets things up for the next few changes (already hinted at here)...
Diffstat (limited to 'source/blender/editors/space_action/action_intern.h')
-rw-r--r--source/blender/editors/space_action/action_intern.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/action_intern.h b/source/blender/editors/space_action/action_intern.h
index 8f39a38157a..8bade7a011f 100644
--- a/source/blender/editors/space_action/action_intern.h
+++ b/source/blender/editors/space_action/action_intern.h
@@ -101,6 +101,7 @@ void ACTION_OT_snap(struct wmOperatorType *ot);
void ACTION_OT_mirror(struct wmOperatorType *ot);
void ACTION_OT_new(struct wmOperatorType *ot);
+void ACTION_OT_push_down(struct wmOperatorType *ot);
void ACTION_OT_markers_make_local(struct wmOperatorType *ot);