set wet value for echo to 0.5

This commit is contained in:
Eric Rosenbaum 2017-01-04 15:30:20 -05:00
parent 792a7ca953
commit b99b639cd2

View file

@ -33,7 +33,7 @@ EchoEffect.prototype.set = function (val) {
if (this.value == 0) { if (this.value == 0) {
this.wet.value = 0; this.wet.value = 0;
} else { } else {
this.wet.value = 1; this.wet.value = 0.5;
} }
var feedback = (this.value / 100) * 0.75; var feedback = (this.value / 100) * 0.75;