Remove unused animation and sound handling functions in App.tsx

This commit is contained in:
2026-04-15 07:27:05 +02:00
parent 8e209ecb51
commit b71fabba5f

View File

@@ -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