From 4d34c819154edca2abefee323831419c388cd60c Mon Sep 17 00:00:00 2001 From: tknkaa Date: Wed, 22 Apr 2026 19:57:09 +0800 Subject: [PATCH] feat: disable axis-helper and grid as default --- src/pages/Play/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Play/index.tsx b/src/pages/Play/index.tsx index 5a23ad0..7492266 100644 --- a/src/pages/Play/index.tsx +++ b/src/pages/Play/index.tsx @@ -25,8 +25,8 @@ export default function Page() { const orbitControlsRef = useRef(null); const [placementMode, setPlacementMode] = useState(false); - const [showGrid, setShowGrid] = useState(true); - const [showAxes, setShowAxes] = useState(true); + const [showGrid, setShowGrid] = useState(false); + const [showAxes, setShowAxes] = useState(false); const [showPreview, setShowPreview] = useState(true); const [showStagedPreview, setShowStagedPreview] = useState(true);