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:
Diffstat (limited to 'source/blender/makesdna/DNA_nla_types.h')
-rw-r--r--source/blender/makesdna/DNA_nla_types.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_nla_types.h b/source/blender/makesdna/DNA_nla_types.h
index c1fce2772cd..914e6337474 100644
--- a/source/blender/makesdna/DNA_nla_types.h
+++ b/source/blender/makesdna/DNA_nla_types.h
@@ -45,10 +45,13 @@ typedef struct bActionModifier {
short type, flag;
char channel[32];
- /* path deform modifier */
- short pad, no_rot_axis;
- struct Object *ob;
+ /* noise modifier */
+ float noisesize, turbul;
+ short channels;
+ /* path deform modifier */
+ short no_rot_axis;
+ struct Object *ob;
} bActionModifier;
#define ACTSTRIP_MOD_DEFORM 0
@@ -94,6 +97,7 @@ typedef struct bActionStrip {
#define ACTSTRIP_CYCLIC_USEX 0x100
#define ACTSTRIP_CYCLIC_USEY 0x200
#define ACTSTRIP_CYCLIC_USEZ 0x400
+#define ACTSTRIP_AUTO_BLENDS 0x800
#endif