diff --git a/src/components/debug/DebugPerf.tsx b/src/components/debug/DebugPerf.tsx index 34617ec..31bdfed 100644 --- a/src/components/debug/DebugPerf.tsx +++ b/src/components/debug/DebugPerf.tsx @@ -3,6 +3,9 @@ import { Debug } from "@/utils/debug/Debug"; const Perf = lazy(() => import("r3f-perf").then((m) => ({ default: m.Perf }))); +const DEBUG_GUI_WIDTH = 245; +const DEBUG_PANEL_GAP = 20; + export function DebugPerf(): React.JSX.Element | null { const debug = Debug.getInstance(); @@ -12,7 +15,10 @@ export function DebugPerf(): React.JSX.Element | null { return ( - + ); }