From 57a2f7a5b569d1d0564c45e33eae1ebad3cd560b Mon Sep 17 00:00:00 2001 From: Peter Schlaile Date: Thu, 9 Nov 2006 22:23:09 +0000 Subject: == Sequencer == This adds support for "generator effect strips", which don't need necessarily an input strip and my version of Matt Ebb's [ #5035 ] 'Solid Color' sequence strip. TODO: With a little bit more tweaking it will be possible to make animated effect plugins and my still unfinished "Bake"-Strip. For the 'Solid Color'-Effect, to quote Matt: This is nice and simple, just provides a solid colour that's set in a colour picker in the properties popup. This is something we've needed for a long time, and I got totally sick of having to make 'black.png' and 'white.png' just to do fades, so I coded this. --- source/blender/makesdna/DNA_sequence_types.h | 8 ++++++++ 1 file changed, 8 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 84ca1f16006..71908ded6af 100644 --- a/source/blender/makesdna/DNA_sequence_types.h +++ b/source/blender/makesdna/DNA_sequence_types.h @@ -173,6 +173,12 @@ typedef struct TransformVars { float rotFin; } TransformVars; +typedef struct SolidColorVars { + float col[3]; + float pad; +} SolidColorVars; + + /* ***************** SEQUENCE ****************** */ /* seq->flag */ @@ -209,6 +215,8 @@ typedef struct TransformVars { #define SEQ_WIPE 25 #define SEQ_GLOW 26 #define SEQ_TRANSFORM 27 +#define SEQ_COLOR 28 + #endif -- cgit v1.2.3