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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_nla_types.h b/source/blender/makesdna/DNA_nla_types.h
index bf3d7820dae..fa1a4fbe456 100644
--- a/source/blender/makesdna/DNA_nla_types.h
+++ b/source/blender/makesdna/DNA_nla_types.h
@@ -35,6 +35,7 @@
struct bAction;
struct Ipo;
+struct Object;
typedef struct bActionStrip {
struct bActionStrip *next, *prev;
@@ -43,7 +44,7 @@ typedef struct bActionStrip {
struct Ipo *ipo; /* Blending ipo */
struct bAction *act; /* The action referenced by this strip */
-
+ struct Object *object; /* For groups, the actual object being nla'ed */
float start, end; /* The range of frames covered by this strip */
float actstart, actend; /* The range of frames taken from the action */
float stridelen; /* The stridelength (considered when flag & ACT_USESTRIDE) */