faust icon indicating copy to clipboard operation
faust copied to clipboard

VST plugin does not "release" when gate is released.

Open agdsat134 opened this issue 2 years ago • 0 comments

VST plugins don't have a release time when using an envelope (see example.) Instead, it just cuts off immediately after the note is let up.

Platform: Windows 10 using FL Studio 20

Steps to reproduce: Export the following plugin as a Windows 64 > VST and run it in a DAW.

import("stdfaust.lib");

gate = button("gate");

process = 
    os.osc(
        nentry("freq", 0, 0, 1000, 1)
    )
    * en.asr(0.15, 1, 3, gate)
    * 0.15
    <: _, _
;

agdsat134 avatar Apr 07 '23 00:04 agdsat134