addDelayedPitchFade or
-
I wish the function "Synth.addPitchFade()" would execute when the NoteOn is executed even if the noteon event is delayed like in:
Synth.addNoteOn(1, 60, 70, 1000)
as it is now, this will not add any pitch fade:
local id = Synth.addNoteOn(1, 64, 80, 200); Synth.addPitchFade(id, 1000, 2, 0);
or if we could have
Synth.addDelayedPitchFade()