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_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index 0236f41c5b9..56112d2866f 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -308,7 +308,8 @@ typedef struct SequenceModifierData {
char name[64]; /* MAX_NAME */
/* mask input, either sequence or mask ID */
- int mask_input_type, pad;
+ int mask_input_type;
+ int mask_time;
struct Sequence *mask_sequence;
struct Mask *mask_id;
@@ -557,4 +558,11 @@ enum {
SEQUENCE_MASK_INPUT_ID = 1
};
+enum {
+ /* Mask animation will be remapped relative to the strip start frame. */
+ SEQUENCE_MASK_TIME_RELATIVE = 0,
+ /* Global (scene) frame number will be used to access the mask. */
+ SEQUENCE_MASK_TIME_ABSOLUTE = 1,
+};
+
#endif /* __DNA_SEQUENCE_TYPES_H__ */