From f0628da7046675087769da7b949a187497af88c9 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 07:25:31 +0200 Subject: [PATCH] Refactor ProjectSchedulePane.tsx by removing unused properties and methods --- src/app/ProjectSchedulePane.tsx | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/app/ProjectSchedulePane.tsx b/src/app/ProjectSchedulePane.tsx index 2374b56a..9bc34e48 100644 --- a/src/app/ProjectSchedulePane.tsx +++ b/src/app/ProjectSchedulePane.tsx @@ -66,14 +66,6 @@ interface ProjectSequencerPaneProps { targetKey: string; label: string; }>; - modelAnimationTargetOptions: Array<{ - targetKey: string; - label: string; - }>; - soundTargetOptions: Array<{ - targetKey: string; - label: string; - }>; scheduler: ProjectScheduler; sequences: ProjectSequenceLibrary; dialogues: ProjectDialogueLibrary; @@ -95,16 +87,11 @@ interface ProjectSequencerPaneProps { onSetRoutinePriority(routineId: string, priority: number): void; onSetRoutineSequenceId(routineId: string, sequenceId: string | null): void; onSetSequenceTitle(sequenceId: string, title: string): void; - onAddHeldControlStep(sequenceId: string, targetKey: string): void; - onAddImpulseControlStep(sequenceId: string, targetKey: string): void; + onAddControlStep(sequenceId: string, targetKey: string): void; onAddDialogueStep(sequenceId: string, dialogueId: string): void; onAddTeleportStep(sequenceId: string, targetEntityId: string): void; onAddSceneTransitionStep(sequenceId: string, targetKey: string): void; onAddVisibilityStep(sequenceId: string, targetKey: string): void; - onAddPlayAnimationStep(sequenceId: string, targetKey: string): void; - onAddStopAnimationStep(sequenceId: string, targetKey: string): void; - onAddPlaySoundStep(sequenceId: string, targetKey: string): void; - onAddStopSoundStep(sequenceId: string, targetKey: string): void; onDeleteStep(sequenceId: string, stepIndex: number): void; onSetControlStepTarget( sequenceId: string,