== 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.)
This commit is contained in:
Peter Schlaile
2009-11-22 20:22:35 +00:00
parent 85080f9e3f
commit 42f99939f6
5 changed files with 84 additions and 105 deletions

View File

@@ -428,8 +428,10 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel):
col.itemR(strip, "rotation_end", text="End")
col = layout.column(align=True)
col.itemR(strip, "factor_0", text="Anim0")
col.itemR(strip, "factor_1", text="Anim1")
if strip.type == 'SPEED':
col.itemR(strip, "speed_fader", text="Speed fader")
else:
col.itemR(strip, "effect_fader", text="Effect fader")
class SEQUENCER_PT_input(SequencerButtonsPanel):