From 485ea4353f293317ce395a75663758092cb6f969 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 10 Dec 2014 15:26:41 +0100 Subject: 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. --- source/blender/makesdna/DNA_sequence_types.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/makesdna/DNA_sequence_types.h') 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), }; -- cgit v1.2.3