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-03-15 13:39:02 +0300
committerJoshua Leung <aligorith@gmail.com>2009-03-15 13:39:02 +0300
commit329aa658c97470a6ac2861c0c9b8108ff0c48182 (patch)
tree7ed0dac0fb21860dfaab04c4c5269ed6057249eb /source/blender/editors/include/ED_anim_api.h
parent6508ad460fa91d605de2f62320711b19a319e2cb (diff)
F-Curve Modifiers: Groundwork for getting these working
- Completed cleaning up the drawing code so that F-Curves with modifiers now get drawn to reflect this. - Added a temporary operator to add modifiers (hotkey Ctrl-Shift-M)
Diffstat (limited to 'source/blender/editors/include/ED_anim_api.h')
-rw-r--r--source/blender/editors/include/ED_anim_api.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h
index 08c5f752fd1..0210e3d6a85 100644
--- a/source/blender/editors/include/ED_anim_api.h
+++ b/source/blender/editors/include/ED_anim_api.h
@@ -149,12 +149,13 @@ typedef enum eAnim_KeyType {
typedef enum eAnimFilter_Flags {
ANIMFILTER_VISIBLE = (1<<0), /* should channels be visible (in terms of hierarchy only) */
ANIMFILTER_SEL = (1<<1), /* should channels be selected */
- ANIMFILTER_FOREDIT = (1<<2), /* does editable status matter */
- ANIMFILTER_CURVESONLY = (1<<3), /* don't include summary-channels, etc. */
- ANIMFILTER_CHANNELS = (1<<4), /* make list for interface drawing */
- ANIMFILTER_ACTGROUPED = (1<<5), /* belongs to the active actiongroup */
- ANIMFILTER_CURVEVISIBLE = (1<<6), /* F-Curve is visible for editing/viewing in Graph Editor */
- ANIMFILTER_ACTIVE = (1<<7), /* channel should be 'active' */ // FIXME: this is only relevant for F-Curves for now
+ ANIMFILTER_UNSEL = (1<<2), /* should channels be NOT selected */
+ ANIMFILTER_FOREDIT = (1<<3), /* does editable status matter */
+ ANIMFILTER_CURVESONLY = (1<<4), /* don't include summary-channels, etc. */
+ ANIMFILTER_CHANNELS = (1<<5), /* make list for interface drawing */
+ ANIMFILTER_ACTGROUPED = (1<<6), /* belongs to the active actiongroup */
+ ANIMFILTER_CURVEVISIBLE = (1<<7), /* F-Curve is visible for editing/viewing in Graph Editor */
+ ANIMFILTER_ACTIVE = (1<<8), /* channel should be 'active' */ // FIXME: this is only relevant for F-Curves for now
} eAnimFilter_Flags;