Macro Mod LFO retrigger on onNote?
-
Hey Gang,
Im using the Macro Modulation Source + LFO. Everything works but when I play my MIDI controller with the LFO modulating a knob, the modulation seems to retrigger every new instance of notes be played.
Is this normal? Is there a work-around?
-
@trillbilly you want to set the legato of the LFO
-
@Lindon
Like this, correct? In the plotter, you can see the retrigger happen. -
@trillbilly so turn it off?
-
@Lindon Toggling it does nothing. The LFO retriggers all the same.
-
@Lindon Apologies, I see now.
With Legato enabled, only the first midi pressed in an instance causes the retrigger.
With is Disabled, each midi instance causes a retrigger.
Is there a way to make it not retrigger or react at all to the onNote?
-
@trillbilly there is a function on the LFO's
LFO Modulator1: (LFO) - Parameter dump: [0]: "Frequency" | 3.00 [1]: "FadeIn" | 1000.00 [2]: "WaveFormType" | 1.00 [3]: "Legato" | 1.00 [4]: "TempoSync" | 0.00 [5]: "SmoothingTime" | 5.00 [6]: "NumSteps" | 16.00 [7]: "LoopEnabled" | 1.00 [8]: "PhaseOffset" | 0.00 [9]: "SyncToMasterClock" | 0.00 [10]: "IgnoreNoteOn" | 0.00 // so try this LFO.setAttribute(LFO.IgnoreNoteOn, true);
-
@ulrik said in Macro Mod LFO retrigger on onNote?:
LFO.setAttribute(LFO.IgnoreNoteOn, true);
Thats the one. Appreciate it brother.