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>2009-06-24 16:50:20 +0400
committerJoshua Leung <aligorith@gmail.com>2009-06-24 16:50:20 +0400
commite5f6a41b1b7125a4c3bc7ef2554c04b768ac765c (patch)
tree7d3aead63393f285bbd62f10cb8e5fd1743fbd42 /source/blender/editors/space_nla/nla_intern.h
parent3533cda80c7b52f8ffca3e3928bedb5bfa96b320 (diff)
NLA SoC: Scale Operators - Clear (Alt-S) and Apply (Ctrl-A)
These two operators work only on Action-Clip strips. * Clear (Alt-S) resets the scale of selected strips to 1.0 * Apply (Ctrl-A) applies the scale of the selected strips to their referenced Actions. If this referenced Action is also used by several other strips, a copy of the Action is made, and the scaling is applied to that Action instead.
Diffstat (limited to 'source/blender/editors/space_nla/nla_intern.h')
-rw-r--r--source/blender/editors/space_nla/nla_intern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_nla/nla_intern.h b/source/blender/editors/space_nla/nla_intern.h
index ef37185fd10..17fad5db47f 100644
--- a/source/blender/editors/space_nla/nla_intern.h
+++ b/source/blender/editors/space_nla/nla_intern.h
@@ -99,6 +99,9 @@ void NLAEDIT_OT_duplicate(wmOperatorType *ot);
void NLAEDIT_OT_delete(wmOperatorType *ot);
void NLAEDIT_OT_split(wmOperatorType *ot);
+void NLAEDIT_OT_apply_scale(wmOperatorType *ot);
+void NLAEDIT_OT_clear_scale(wmOperatorType *ot);
+
/* **************************************** */
/* nla_channels.c */