From b99b639cd20aea37b79ce657c21c817f5669ca74 Mon Sep 17 00:00:00 2001 From: Eric Rosenbaum Date: Wed, 4 Jan 2017 15:30:20 -0500 Subject: [PATCH] set wet value for echo to 0.5 --- src/effects/EchoEffect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/EchoEffect.js b/src/effects/EchoEffect.js index 304bfb8..dd78ff0 100644 --- a/src/effects/EchoEffect.js +++ b/src/effects/EchoEffect.js @@ -33,7 +33,7 @@ EchoEffect.prototype.set = function (val) { if (this.value == 0) { this.wet.value = 0; } else { - this.wet.value = 1; + this.wet.value = 0.5; } var feedback = (this.value / 100) * 0.75;