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:
authorPeter Schlaile <peter@schlaile.de>2009-11-22 23:22:35 +0300
committerPeter Schlaile <peter@schlaile.de>2009-11-22 23:22:35 +0300
commit42f99939f62de85069251f88a2ce26f78f4b02c9 (patch)
treef3f9543e56a2e23e275861771d56406adfc68622 /source/blender/makesdna/DNA_sequence_types.h
parent85080f9e3fea0177e24f01a8f636d4b13b99714d (diff)
== Sequencer ==
This should make animations in sequencer work again at most places. It removes facf0 and facf1 and replaces them by * effect_fader (the fader position for transition effects limited 0-1 value range) * speed_fader (full range fader for speed effect) Also: default transitions should work again. Still not working: non-IPO-locked curves. (Don't really know, if we can / want to bring them back in new animation system.)
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index 69096e5d2cf..9b38ad6b8cf 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -150,7 +150,8 @@ typedef struct Sequence {
struct Ipo *ipo; // xxx depreceated... old animation system
struct Scene *scene;
struct anim *anim;
- float facf0, facf1;
+ float effect_fader;
+ float speed_fader;
PluginSeq *plugin;