Co-authored-by: Reifonas <211114984+Reifonas@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-05-15 11:35:26 +00:00
parent 156594ae14
commit ae5f40c27c
+9
View File
@@ -133,6 +133,15 @@ interface ModelStore {
showGrid: boolean;
setShowGrid: (show: boolean) => void;
/** World Y position of the grid plane (meters). */
gridY: number;
setGridY: (y: number) => void;
/** When true, grid follows the bottom of the loaded model automatically. */
gridAutoFollow: boolean;
setGridAutoFollow: (b: boolean) => void;
/** Nudge grid by delta meters and disable auto-follow. */
nudgeGridY: (delta: number) => void;
wireframeColor: string;
setWireframeColor: (color: string) => void;