From 8a8f60f3c9f37a79b5da1aee74d1cbe45c88fb34 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 23:40:00 +0200 Subject: [PATCH] Add project sequence list and selected sequence ID state in App.tsx --- src/app/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index aa470e64..1037e8bc 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1906,6 +1906,9 @@ export function App({ store, initialStatusMessage }: AppProps) { const projectDialogueList = getProjectDialogues( editorState.projectDocument.dialogues ); + const projectSequenceList = getProjectSequences( + editorState.projectDocument.sequences + ); const selectedInteractionSource = isInteractionSourceEntity(selectedEntity) ? selectedEntity : null; @@ -2219,6 +2222,9 @@ export function App({ store, initialStatusMessage }: AppProps) { const [selectedDialogueId, setSelectedDialogueId] = useState( null ); + const [selectedSequenceId, setSelectedSequenceId] = useState( + null + ); const [ worldDawnAmbientIntensityFactorDraft, setWorldDawnAmbientIntensityFactorDraft