update step

This commit is contained in:
math-pixel
2026-05-11 10:28:39 +02:00
parent e8fb859f79
commit 41f7b2ad19
6 changed files with 248 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Zone } from "@/types/game";
import type { Vector3Tuple } from "@/types/3d";
export const ZONES: Zone[] = [
{
id: "fabrikExit",
position: [-5, 25, -15] as Vector3Tuple,
radius: 10,
height: 20,
targetStep: "outOfFabrik",
},
];