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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-04-30 11:44:41 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-04-30 13:10:18 +0300
commit73e8d1096a65b492c040d63b6f52c8146940ba6a (patch)
treeba1bae56a4b963207f9eea35cdfacc3b7ead899b /source/blender/makesdna/DNA_anim_types.h
parent56fd032393f3cfbd8d648c43e88037fdcf481764 (diff)
Depsgraph: Store pointer to original NLA strip
Similar to modifier data and particle systems.
Diffstat (limited to 'source/blender/makesdna/DNA_anim_types.h')
-rw-r--r--source/blender/makesdna/DNA_anim_types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h
index 7e97ad387dc..1cd49330aa8 100644
--- a/source/blender/makesdna/DNA_anim_types.h
+++ b/source/blender/makesdna/DNA_anim_types.h
@@ -710,6 +710,11 @@ typedef struct NlaStrip {
/** Settings. */
int flag;
char _pad2[4];
+
+ /* Pointer to an original NLA strip. */
+ struct NlaStrip *orig_strip;
+
+ void *_pad3;
} NlaStrip;
/* NLA Strip Blending Mode */