mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-23 06:22:54 -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) {
|
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;
|
||||||
|
|
Loading…
Reference in a new issue