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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-29 22:35:30 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-29 22:35:30 +0300
commit18e5f7b50b33f1cb1f71ee3d1cc19477310ed87e (patch)
tree9393392a6b690b5b92d890e41f0f40a30d650bf3 /source/blender/makesdna/DNA_key_types.h
parent0d8b28e2a39d55e346e0342d6e305a811e0ce05b (diff)
Shape Keys
========== - Added a Mute button for shape keys, useful for debugging the influence of driven shape keys. - Bugfix for the shape keys relative to others keys, was hanging in an eternal loop when deleting the other key.
Diffstat (limited to 'source/blender/makesdna/DNA_key_types.h')
-rw-r--r--source/blender/makesdna/DNA_key_types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_key_types.h b/source/blender/makesdna/DNA_key_types.h
index 785cf515a42..87c09fb0ee4 100644
--- a/source/blender/makesdna/DNA_key_types.h
+++ b/source/blender/makesdna/DNA_key_types.h
@@ -44,7 +44,7 @@ typedef struct KeyBlock {
float pos;
float curval;
- short type, adrcode, relative, pad1; /* relative == 0 means first key is reference */
+ short type, adrcode, relative, flag; /* relative == 0 means first key is reference */
int totelem, pad2;
void *data;
@@ -87,5 +87,8 @@ typedef struct Key {
#define KEY_CARDINAL 1
#define KEY_BSPLINE 2
+/* keyblock->flag */
+#define KEYBLOCK_MUTE 1
+
#endif