From 4e285682464d245acac95391f66372369d29249a Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 13 May 2026 14:51:44 +0200 Subject: [PATCH] Refactor terrain grid sample inputs to support all four cardinal directions (East, West, North, South) --- src/app/App.tsx | 175 +++++++++++++++--------------------------------- 1 file changed, 55 insertions(+), 120 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index a857bda7..813d1d80 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -21397,80 +21397,54 @@ export function App({
Grid Settings
Cell Size changes resolution while preserving footprint. - Samples X/Z extend or crop terrain size toward the chosen - cardinal edge. + East, West, North, and South samples extend or crop that + side of the terrain.
-
- - +
+ {( + [ + ["east", "East"], + ["west", "West"], + ["north", "North"], + ["south", "South"] + ] as const + ).map(([side, label]) => ( + + ))} +
+
-
- - -