reorganization

This commit is contained in:
2025-09-30 16:56:14 +02:00
parent 8f5330972a
commit 372c1a935b
15 changed files with 425 additions and 92 deletions

View File

@ -114,8 +114,8 @@ function App() {
}
}
const handleEffectChange = (parameterId: string, value: number) => {
effectSettings.setKey(parameterId as keyof typeof effectValues, value)
const handleEffectChange = (parameterId: string, value: number | boolean) => {
effectSettings.setKey(parameterId as any, value as any)
if (playbackManagerRef.current) {
playbackManagerRef.current.setEffects(effectValues)
}