cleaner default filter envelope
- fixes some unexpected envelope glitches
This commit is contained in:
parent
4688c0bf10
commit
9142fb753a
1 changed files with 6 additions and 6 deletions
|
|
@ -183,24 +183,24 @@ export const superdough = async (value, deadline, hapDuration) => {
|
||||||
cutoff,
|
cutoff,
|
||||||
lpenv,
|
lpenv,
|
||||||
lpattack = 0.01,
|
lpattack = 0.01,
|
||||||
lpdecay = 0.5,
|
lpdecay = 0.01,
|
||||||
lpsustain = 0.6,
|
lpsustain = 1,
|
||||||
lprelease = 0.01,
|
lprelease = 0.01,
|
||||||
resonance = 1,
|
resonance = 1,
|
||||||
// high pass
|
// high pass
|
||||||
hpenv,
|
hpenv,
|
||||||
hcutoff,
|
hcutoff,
|
||||||
hpattack = 0.01,
|
hpattack = 0.01,
|
||||||
hpdecay = 0.5,
|
hpdecay = 0.01,
|
||||||
hpsustain = 0.6,
|
hpsustain = 1,
|
||||||
hprelease = 0.01,
|
hprelease = 0.01,
|
||||||
hresonance = 1,
|
hresonance = 1,
|
||||||
// band pass
|
// band pass
|
||||||
bpenv,
|
bpenv,
|
||||||
bandf,
|
bandf,
|
||||||
bpattack = 0.01,
|
bpattack = 0.01,
|
||||||
bpdecay = 0.5,
|
bpdecay = 0.01,
|
||||||
bpsustain = 0.6,
|
bpsustain = 1,
|
||||||
bprelease = 0.01,
|
bprelease = 0.01,
|
||||||
bandq = 1,
|
bandq = 1,
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue