This commit is contained in:
Jade (Rose) Rowland
2025-05-20 21:53:10 +01:00
parent 45bccf13ff
commit 5e4eb7fc53
+1 -1
View File
@@ -811,7 +811,7 @@ class ByteBeatProcessor extends AudioWorkletProcessor {
const signal = ((f(t) & 255) / 127.5 - 1) / 4;
for (let o = 0; o < output.length; o++) {
// Combination of both oscillators with envelope applied
output[o][i] = signal;
output[o][i] = signal * .4;
}
}