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:
authorCampbell Barton <ideasman42@gmail.com>2014-12-10 17:26:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-25 16:15:08 +0300
commit485ea4353f293317ce395a75663758092cb6f969 (patch)
tree164dc1aca9839b118b76e846ac428085591a507a /source/blender/makesdna/DNA_sequence_types.h
parent456fdaba67e1ab3035ab916fc31b336d452ab99e (diff)
Sequencer: nested scene strip support (like metas)
This makes it possible to use scenes as a kind of multi-user meta-strip (with their own time). Currently this supports rendering & drawing nested strips, but no convenient way to tab-enter into a scene strip.
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index 69e7fb43fb6..e5c102b1d2d 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -417,6 +417,9 @@ enum {
SEQ_SCENE_NO_GPENCIL = (1 << 28),
SEQ_USE_VIEWS = (1 << 29),
+ /* access scene strips directly (like a metastrip) */
+ SEQ_SCENE_STRIPS = (1 << 30),
+
SEQ_INVALID_EFFECT = (1 << 31),
};