As you might now, with the #Line input device it is possible to use Redux as a bare multifx.
Using static effects on any topology that has no feedback loops is supported. Macros allow external automation. This means that one can modulate a lot of parameters.
It is also possible to do some pattern-based effects, as e.g. the legendary CamelSpace VST did, unfortunately the best bet now is to write patterns externally as DAW automation controlling a macro. This has the side effect that patterns canāt be recalled on presets, so it is desirable to do this internally.
I will first explain a way to do this internally and then the rough edges with the approach.
To have internal patterns the next devices are needed in series: LFO envelope with Custom waveform (pattern), Formula, LFO envelope with Custom waveform (pattern), Formula, Hydra.
If we ignore both the formulas, the second LFO pattern is an AD envelope and the first LFO is modulating the Reset (envelope position) of this AD envelope. This way to add more gating or sustain requires only chaging this AD envelope, not tedious redrawing of every peak on the graph.
The first formula is just āy = 0.5 - Aā to invert the first LFO, as the Reset parameter on LFOs goes from 1 to 0. The second formula is just āy = 2*Aā to get the envelope to full range. The Hydra is just for forwarding these envelopes to any parameter.
Unfortunately this approach has some problems:
-The envelopes/LFOS donāt sync with the host, they are free running. This means that playing and stopping doesnāt work. There is a āpainfulā workaround to Retrigger by using MIDI via a Note/Velocity tracker. This requires a dummy sample with silence and an own channel for Redux with MIDI and routing on the DAW.
-The LFO envelopes can store up to six presets (patterns), but there is no way to automate the pattern recall. Macros donāt allow it.
-This is a global problem on Redux as a FX. At least on Reaper when using the #line input the original signal arenāt replaced on the DAW. Redux acts as a send effect. Workarounds have to be made too with track channel redirections on the DAW.
camelspacey.xrni (6.0 KB)