slab renderer

This commit is contained in:
wass08
2026-01-27 07:32:46 +09:00
parent 8b1fbb4c1d
commit 8940f70117
7 changed files with 467 additions and 1 deletions
@@ -1,6 +1,7 @@
import useEditor, { type Phase, type Tool } from "@/store/use-editor";
import { useViewer } from "@pascal-app/viewer";
import { ItemTool } from "./item/item-tool";
import { SlabTool } from "./slab/slab-tool";
import { WallTool } from "./wall/wall-tool";
import { ZoneBoundaryEditor } from "./zone/zone-boundary-editor";
import { ZoneTool } from "./zone/zone-tool";
@@ -9,6 +10,7 @@ const tools: Record<Phase, Partial<Record<Tool, React.FC>>> = {
site: {},
structure: {
wall: WallTool,
slab: SlabTool,
item: ItemTool,
zone: ZoneTool,
},