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-12-21 07:11:19 +0300
committerJoshua Leung <aligorith@gmail.com>2008-12-21 07:11:19 +0300
commite2cca3320ac9e32c9f5ad51e1c6de1d049aa5b98 (patch)
treece60a42269481d7b2bdd87d9f0859ef681d53d27 /source/blender/editors/include/ED_keyframing.h
parent62f4d2884c5d0a99cc84f23af29f9aea7977dd4d (diff)
2.5 - Animation Editors - Filtering API
Brought back the Filtering API for Animation Editors. This is the 'backbone' of the current Action/Dopesheet Editor code, so it is essential to have this working.
Diffstat (limited to 'source/blender/editors/include/ED_keyframing.h')
-rw-r--r--source/blender/editors/include/ED_keyframing.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/include/ED_keyframing.h b/source/blender/editors/include/ED_keyframing.h
index 29d19cd18e3..f4be3f06c6b 100644
--- a/source/blender/editors/include/ED_keyframing.h
+++ b/source/blender/editors/include/ED_keyframing.h
@@ -122,13 +122,13 @@ short id_frame_has_keyframe(struct ID *id, float frame, short filter);
*/
enum {
/* general */
- ANIMFILTER_LOCAL = (1<<0), /* only include locally available anim data */
- ANIMFILTER_MUTED = (1<<1), /* include muted elements */
- ANIMFILTER_ACTIVE = (1<<2), /* only include active-subelements */
+ ANIMFILTER_KEYS_LOCAL = (1<<0), /* only include locally available anim data */
+ ANIMFILTER_KEYS_MUTED = (1<<1), /* include muted elements */
+ ANIMFILTER_KEYS_ACTIVE = (1<<2), /* only include active-subelements */
/* object specific */
- ANIMFILTER_NOMAT = (1<<9), /* don't include material keyframes */
- ANIMFILTER_NOSKEY = (1<<10), /* don't include shape keys (for geometry) */
+ ANIMFILTER_KEYS_NOMAT = (1<<9), /* don't include material keyframes */
+ ANIMFILTER_KEYS_NOSKEY = (1<<10), /* don't include shape keys (for geometry) */
} eAnimFilterFlags;
#endif /* BIF_KEYFRAMING_H */