67b35eb8d7
# Conflicts: # package-lock.json # package.json # src/App.tsx # src/components/three/interaction/CentralObject.tsx # src/components/three/interaction/VillageoisHelperObject.tsx # src/managers/GameStepManager.ts # src/stateManager/AudioManager.ts # src/world/World.tsx # src/world/player/PlayerController.tsx
20 lines
410 B
TypeScript
20 lines
410 B
TypeScript
import type { Zone } from "@/types/game";
|
|
import type { Vector3Tuple } from "@/types/three/three";
|
|
|
|
export const ZONES: Zone[] = [
|
|
{
|
|
id: "fabrikExit",
|
|
position: [-5, 25, -15] as Vector3Tuple,
|
|
radius: 10,
|
|
height: 20,
|
|
targetStep: "mission2",
|
|
},
|
|
{
|
|
id: "searchingZone",
|
|
position: [-5, 25, -30] as Vector3Tuple,
|
|
radius: 10,
|
|
height: 20,
|
|
targetStep: "searching",
|
|
},
|
|
];
|