sync: update core and viewer from monorepo (#143)

Major changes:
- Roof system rewrite with roof-segment support
- Scene store refactor
- Spatial grid improvements
- Item light system
- Post-processing and selection manager updates
- Perf monitor component

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Aymeric Rabot
2026-03-20 23:18:30 -04:00
committed by GitHub
co-authored by Claude Opus 4.6
parent bafc5973a3
commit 1d28e4208f
32 changed files with 1921 additions and 619 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ export function initSpaceDetectionSync(
if (!currentWallsByLevel.has(levelId)) {
currentWallsByLevel.set(levelId, new Set())
}
currentWallsByLevel.get(levelId)!.add((node as any).id)
currentWallsByLevel.get(levelId)?.add((node as any).id)
}
}