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>2008-04-16 15:02:08 +0400
committerJoshua Leung <aligorith@gmail.com>2008-04-16 15:02:08 +0400
commitd482b3285cdbfc85b5031fc7223b8ffe96619562 (patch)
tree65a9a75ac30d1a572bfde69ba7ec5eb9f82fdc01 /source/blender/makesdna
parent68418a9bce5f724a78d1b48d6166be1af3132d5f (diff)
== Action Editor - Group Colours for Channels ==
It is now possible for Action Channels to be displayed using the colour of its group. The colour for an Action Group is only set when it is auto-created by keyframing (controls to tweak this may/may-not be added, time permitting). To enable the display of these colours, the View -> 'Use Group Colors' must be enabled. However, this is disabled by default.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_action_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index 9fef59b948f..26b7e3c1013 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -233,7 +233,9 @@ typedef enum SACTION_FLAG {
/* don't include keyframes that are out of view */
SACTION_HORIZOPTIMISEON = (1<<5),
/* hack for moving pose-markers (temp flag) */
- SACTION_POSEMARKERS_MOVE = (1<<6)
+ SACTION_POSEMARKERS_MOVE = (1<<6),
+ /* draw action channels using group colours (where applicable) */
+ SACTION_DRAWGCOLORS = (1<<7)
} SACTION_FLAG;
/* SpaceAction AutoSnap Settings (also used by SpaceNLA) */