mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-22 14:02:29 -05:00
set wet value for echo to 0.5
This commit is contained in:
parent
792a7ca953
commit
b99b639cd2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue