From b71fabba5f29233b4ce997286cae42108ef00b78 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 07:27:05 +0200 Subject: [PATCH] Remove unused animation and sound handling functions in App.tsx --- src/app/App.tsx | 52 ------------------------------------------------- 1 file changed, 52 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 8a0614e7..b895b4a0 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -4966,58 +4966,6 @@ export function App({ store, initialStatusMessage }: AppProps) { ); }; - const handleAddProjectSequencePlayAnimationStep = ( - sequenceId: string, - targetKey: string - ) => { - handleAddProjectSequenceSpecificControlStep( - sequenceId, - targetKey, - "model.playAnimation", - "Add project sequence play animation effect", - "Added play animation effect." - ); - }; - - const handleAddProjectSequenceStopAnimationStep = ( - sequenceId: string, - targetKey: string - ) => { - handleAddProjectSequenceSpecificControlStep( - sequenceId, - targetKey, - "model.stopAnimation", - "Add project sequence stop animation effect", - "Added stop animation effect." - ); - }; - - const handleAddProjectSequencePlaySoundStep = ( - sequenceId: string, - targetKey: string - ) => { - handleAddProjectSequenceSpecificControlStep( - sequenceId, - targetKey, - "sound.play", - "Add project sequence play sound effect", - "Added play sound effect." - ); - }; - - const handleAddProjectSequenceStopSoundStep = ( - sequenceId: string, - targetKey: string - ) => { - handleAddProjectSequenceSpecificControlStep( - sequenceId, - targetKey, - "sound.stop", - "Add project sequence stop sound effect", - "Added stop sound effect." - ); - }; - const handleDeleteProjectSequenceStep = ( sequenceId: string, stepIndex: number