Extract sceneList from editorState.projectDocument.scenes

This commit is contained in:
2026-04-11 03:49:16 +02:00
parent de8360183c
commit b25be0d036

View File

@@ -1095,6 +1095,7 @@ function createProjectDownloadName(documentName: string): string {
export function App({ store, initialStatusMessage }: AppProps) {
const editorState = useEditorStoreState(store);
const sceneList = Object.values(editorState.projectDocument.scenes);
const brushList = Object.values(editorState.document.brushes);
const layoutMode = editorState.viewportLayoutMode;
const activePanelId = editorState.activeViewportPanelId;