This commit is contained in:
2025-09-30 21:19:43 +02:00
parent d867f12fcd
commit 21c983b41e
7 changed files with 339 additions and 31 deletions

View File

@ -49,6 +49,15 @@ export const ENGINE_CONTROLS: EffectConfig[] = [
default: 75,
step: 1,
unit: '%'
},
{
id: 'pitch',
label: 'Pitch',
min: 0.1,
max: 4,
default: 1,
step: 0.01,
unit: 'x'
}
]
}
@ -113,8 +122,8 @@ export const EFFECTS: EffectConfig[] = [
{
id: 'delayTime',
label: 'Time',
min: 0,
max: 1000,
min: 10,
max: 2000,
default: 250,
step: 10,
unit: 'ms'
@ -127,6 +136,42 @@ export const EFFECTS: EffectConfig[] = [
default: 50,
step: 1,
unit: '%'
},
{
id: 'delayWetDry',
label: 'Mix',
min: 0,
max: 100,
default: 50,
step: 1,
unit: '%'
},
{
id: 'delayTone',
label: 'Tone',
min: 0,
max: 100,
default: 70,
step: 1,
unit: '%'
},
{
id: 'delaySaturation',
label: 'Saturation',
min: 0,
max: 100,
default: 20,
step: 1,
unit: '%'
},
{
id: 'delayFlutter',
label: 'Flutter',
min: 0,
max: 100,
default: 15,
step: 1,
unit: '%'
}
]
},
@ -143,6 +188,42 @@ export const EFFECTS: EffectConfig[] = [
default: 0,
step: 1,
unit: '%'
},
{
id: 'reverbDecay',
label: 'Decay',
min: 0.1,
max: 5,
default: 2,
step: 0.1,
unit: 's'
},
{
id: 'reverbDamping',
label: 'Damping',
min: 0,
max: 100,
default: 50,
step: 1,
unit: '%'
},
{
id: 'reverbPanRate',
label: 'Pan Rate',
min: 0,
max: 10,
default: 0,
step: 0.1,
unit: 'Hz'
},
{
id: 'reverbPanWidth',
label: 'Pan Width',
min: 0,
max: 100,
default: 50,
step: 1,
unit: '%'
}
]
}