From 1b06b754a6cab1df18ee5157c5c44a0acd48e5d7 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 02:40:32 +0200 Subject: [PATCH] Reorder imports and add default box brush constants in App.tsx --- src/app/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index d69d3a9a..64bfb953 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -16,6 +16,8 @@ import { import type { Vec2, Vec3 } from "../core/vector"; import { BOX_FACE_IDS, + DEFAULT_BOX_BRUSH_CENTER, + DEFAULT_BOX_BRUSH_SIZE, createDefaultFaceUvState, type BoxBrush, type BoxFaceId, @@ -27,8 +29,6 @@ import { createFitToFaceBoxBrushFaceUvState } from "../geometry/box-face-uvs"; import { STARTER_MATERIAL_LIBRARY, type MaterialDef } from "../materials/starter-material-library"; import { Panel } from "../shared-ui/Panel"; import { ViewportCanvas } from "../viewport-three/ViewportCanvas"; - -import { DEFAULT_BOX_BRUSH_CENTER, DEFAULT_BOX_BRUSH_SIZE } from "../document/brushes"; import type { EditorStore } from "./editor-store"; import { useEditorStoreState } from "./use-editor-store";