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:
authorAndrea Weikert <elubie@gmx.net>2009-12-12 01:51:53 +0300
committerAndrea Weikert <elubie@gmx.net>2009-12-12 01:51:53 +0300
commit86028a66319a67ed14b6d6cd43053a529df5b4a8 (patch)
tree3ac9d80d2ebcf29db7b88fd02957689cf845ba79 /source/blender/makesdna/DNA_sequence_types.h
parent3fd73289bdbacf47a2b53fb135524a5d6bcb65bf (diff)
Sequencer: Transform Strip updates (Durian wish)
Removed the Start/End Settings and the effect_fader from the sequencer transform strip. The transform strip can now only be animated directly by keying the Scale X, Scale Y, Translate X, Translate Y and Rotation values. Caveat: The uniform scale re-uses the Scale X value, so when changing the animation on Scale X in the non-uniform scaling case, the uniform scaling will be affected too. This was done to not break files for Durian. Note: As much as I would have liked to clean up the TransformVars, it caused crashes of earlier versions of blender when opening the file. The rna identifiers were also kept as to not break any existing animation on those keys.
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index 006e1e594d8..0b45d62e347 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -211,14 +211,14 @@ typedef struct GlowVars {
typedef struct TransformVars {
float ScalexIni;
float ScaleyIni;
- float ScalexFin;
- float ScaleyFin;
+ float ScalexFin; /* deprecated - old transform strip */
+ float ScaleyFin; /* deprecated - old transform strip */
float xIni;
- float xFin;
+ float xFin; /* deprecated - old transform strip */
float yIni;
- float yFin;
+ float yFin; /* deprecated - old transform strip */
float rotIni;
- float rotFin;
+ float rotFin; /* deprecated - old transform strip */
int percent;
int interpolation;
int uniform_scale; /* preserve aspect/ratio when scaling */