From 1328d6344e5433bd8652aeed92f42630c6ff3ed5 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 01:42:24 +0200 Subject: [PATCH] Update App.tsx to include new step handlers and options --- src/app/App.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 23139a70..e8de1b88 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -11353,12 +11353,9 @@ export function App({ store, initialStatusMessage }: AppProps) { label }) )} - visibilityTargetOptions={visibilityBrushOptions.map( - ({ brush, label }) => ({ - brushId: brush.id, - label - }) - )} + visibilityTargetOptions={sequenceVisibilityTargetOptions} + modelAnimationTargetOptions={sequenceAnimationTargetOptions} + soundTargetOptions={sequenceSoundTargetOptions} scheduler={editorState.projectDocument.scheduler} sequences={editorState.projectDocument.sequences} dialogues={editorState.projectDocument.dialogues} @@ -11849,6 +11846,14 @@ export function App({ store, initialStatusMessage }: AppProps) { onAddDialogueStep={handleAddProjectSequenceDialogueStep} onAddTeleportStep={handleAddProjectSequenceTeleportStep} onAddVisibilityStep={handleAddProjectSequenceVisibilityStep} + onAddPlayAnimationStep={ + handleAddProjectSequencePlayAnimationStep + } + onAddStopAnimationStep={ + handleAddProjectSequenceStopAnimationStep + } + onAddPlaySoundStep={handleAddProjectSequencePlaySoundStep} + onAddStopSoundStep={handleAddProjectSequenceStopSoundStep} onDeleteStep={handleDeleteProjectSequenceStep} onSetControlStepTarget={updateProjectSequenceControlStepTarget} onSetControlStepEffectOption={