Update App.tsx to include new step handlers and options

This commit is contained in:
2026-04-15 01:42:24 +02:00
parent 0bf1491a56
commit 1328d6344e

View File

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