window building

This commit is contained in:
wass08
2026-02-18 10:41:12 +09:00
parent 9a2c89547b
commit 076faae7df
6 changed files with 374 additions and 21 deletions
@@ -8,6 +8,7 @@ import { ItemPanel } from './item-panel'
import { ReferencePanel } from './reference-panel'
import { RoofPanel } from './roof-panel'
import { SlabPanel } from './slab-panel'
import { WindowPanel } from './window-panel'
export function PanelManager() {
const selectedIds = useViewer((s) => s.selection.selectedIds)
@@ -33,6 +34,8 @@ export function PanelManager() {
return <SlabPanel />
case 'ceiling':
return <CeilingPanel />
case 'window':
return <WindowPanel />
}
}
}