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>2007-03-20 14:04:47 +0300
committerJoshua Leung <aligorith@gmail.com>2007-03-20 14:04:47 +0300
commit3cb25c774c993fd4ca316c529f75d87e1761b417 (patch)
tree95770b77a70e1a2525306793cba840e1d7f00042 /source/blender/makesdna
parenta51477093b93fdbca69b47165012c762c46c7e34 (diff)
== Action Editor - Collapsable Action Channels ==
Action Channels can now be collapsed/expanded to show/hide Constraint Channels, lessening clutter. In future, this could (will probably be) expanded to show the show/hide individual transform channels. User Notes: * Expansion is off by default * NKEY popup now features option to turn expansion on/off * Changed behaviour of protection a bit - now if an action channel has protection on, constraint channels under it are also automagically protected Developer Notes: * I've gone through doing a lot of whitespace/linebreak tweaking to get the code looking more consistent with itself * To save typing (and to make it easier to make future revisions), a set of macros is now used to check for some commonly-checked settings (i.e. selection, visibility, and protection).
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_action_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index 7d221d34d6e..2f1b9ed85f0 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -126,6 +126,7 @@ typedef struct SpaceAction {
#define ACHAN_HILIGHTED 0x00000002
#define ACHAN_HIDDEN 0x00000004
#define ACHAN_PROTECTED 0x00000008
+#define ACHAN_EXPANDED 0x00000010
#define ACHAN_MOVED 0x80000000
/* SpaceAction flag */