Skip to content

Commit 0c4ef9a

Browse files
committed
Apply dry gain when no notes are playing
1 parent 3268fd9 commit 0c4ef9a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Soft-Bell.jsfx

+3
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,9 @@ synth_sample() ? (
240240

241241
spl0 = output_wet*left + output_dry*spl0;
242242
spl1 = output_wet*right + output_dry*spl1;
243+
) : (
244+
spl0 *= output_dry;
245+
spl1 *= output_dry;
243246
);
244247

245248

0 commit comments

Comments
 (0)