before bugfixing

This commit is contained in:
2025-09-30 21:39:16 +02:00
parent 21c983b41e
commit d1ff3daae1
7 changed files with 502 additions and 41 deletions

View File

@ -65,8 +65,95 @@ export const ENGINE_CONTROLS: EffectConfig[] = [
export const EFFECTS: EffectConfig[] = [
{
id: 'wavefolder',
name: 'Wavefolder',
id: 'filter',
name: 'Filter',
parameters: [
{
id: 'hpEnable',
label: 'HP',
min: 0,
max: 1,
default: 0,
step: 1,
unit: ''
},
{
id: 'hpFreq',
label: 'HP Freq',
min: 20,
max: 10000,
default: 1000,
step: 10,
unit: 'Hz'
},
{
id: 'hpRes',
label: 'HP Q',
min: 0.1,
max: 20,
default: 1,
step: 0.1,
unit: ''
},
{
id: 'lpEnable',
label: 'LP',
min: 0,
max: 1,
default: 0,
step: 1,
unit: ''
},
{
id: 'lpFreq',
label: 'LP Freq',
min: 20,
max: 20000,
default: 5000,
step: 10,
unit: 'Hz'
},
{
id: 'lpRes',
label: 'LP Q',
min: 0.1,
max: 20,
default: 1,
step: 0.1,
unit: ''
},
{
id: 'bpEnable',
label: 'BP',
min: 0,
max: 1,
default: 0,
step: 1,
unit: ''
},
{
id: 'bpFreq',
label: 'BP Freq',
min: 20,
max: 10000,
default: 1000,
step: 10,
unit: 'Hz'
},
{
id: 'bpRes',
label: 'BP Q',
min: 0.1,
max: 20,
default: 1,
step: 0.1,
unit: ''
}
]
},
{
id: 'foldcrush',
name: 'Fold and Crush',
bypassable: true,
parameters: [
{
@ -86,14 +173,7 @@ export const EFFECTS: EffectConfig[] = [
default: 1,
step: 0.1,
unit: 'x'
}
]
},
{
id: 'bitcrush',
name: 'Bitcrush',
bypassable: true,
parameters: [
},
{
id: 'bitcrushDepth',
label: 'Depth',