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.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_nla_types.h b/source/blender/makesdna/DNA_nla_types.h
index 4d5483f71d7..bf3d7820dae 100644
--- a/source/blender/makesdna/DNA_nla_types.h
+++ b/source/blender/makesdna/DNA_nla_types.h
@@ -38,9 +38,8 @@ struct Ipo;
typedef struct bActionStrip {
struct bActionStrip *next, *prev;
- short flag;
- short mode;
- int reserved1;
+ short flag, mode;
+ short stride_axis, pad; /* axis 0=x, 1=y, 2=z */
struct Ipo *ipo; /* Blending ipo */
struct bAction *act; /* The action referenced by this strip */
@@ -51,6 +50,8 @@ typedef struct bActionStrip {
float repeat; /* The number of times to repeat the action range */
float blendin, blendout;
+
+ char stridechannel[32]; /* Instead of stridelen, it uses an action channel */
} bActionStrip;
#define ACTSTRIPMODE_BLEND 0
@@ -64,5 +65,6 @@ typedef struct bActionStrip {
#define ACTSTRIP_ACTIVE 0x10
#define ACTSTRIP_LOCK_ACTION 0x20
+
#endif