feat-intro

This commit is contained in:
math-pixel
2026-05-11 11:13:36 +02:00
parent 1b7813a5bb
commit 32d644b09d
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ export function ZoneDetection(): null {
const playerPos = { x: 0, y: 0, z: 0 };
folder
.add(gameState, "step", ["intro", "outOfFabrik"])
.add(gameState, "step", ["intro", "bike"])
.name("Game Step")
.disable();
+1 -1
View File
@@ -7,6 +7,6 @@ export const ZONES: Zone[] = [
position: [-5, 25, -15] as Vector3Tuple,
radius: 10,
height: 20,
targetStep: "outOfFabrik",
targetStep: "bike",
},
];
+1 -1
View File
@@ -6,7 +6,7 @@ export type GameStep =
| "naming"
| "bienvenue"
| "star-move"
| "outOfFabrik";
| "bike";
export interface Zone {
id: string;