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-07-03 08:48:44 +0400
committerJoshua Leung <aligorith@gmail.com>2009-07-03 08:48:44 +0400
commit66efea5e2d94ec7296efbe03ddeb7c6c4878c9ab (patch)
tree4e85dadb5e8a51c2f33ba9043ab0837b9f38bac6 /source/blender/makesdna/DNA_anim_types.h
parenta07d1ea3ea1875f938327d37fbb219717e325ada (diff)
NLA SoC: Toggle for 'Editing in Place'
The 'pin' icon beside the name of the active Action when tweaking some strip's action can be used to toggle between editing the Action's keyframes in 'mapped' time or in 'un-mapped' time.
Diffstat (limited to 'source/blender/makesdna/DNA_anim_types.h')
-rw-r--r--source/blender/makesdna/DNA_anim_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h
index f9508efef31..110b33850f0 100644
--- a/source/blender/makesdna/DNA_anim_types.h
+++ b/source/blender/makesdna/DNA_anim_types.h
@@ -730,6 +730,8 @@ enum {
ADT_NLA_EVAL_OFF = (1<<1),
/* NLA is being 'tweaked' (i.e. in EditMode) */
ADT_NLA_EDIT_ON = (1<<2),
+ /* active Action for 'tweaking' does not have mapping applied for editing */
+ ADT_NLA_EDIT_NOMAP = (1<<3),
/* drivers expanded in UI */
ADT_DRIVERS_COLLAPSED = (1<<10),