before bugfixing
This commit is contained in:
@ -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',
|
||||
|
||||
Reference in New Issue
Block a user