wip mission 2 refine

This commit is contained in:
math-pixel
2026-06-01 11:49:48 +02:00
parent d5feb07ff0
commit 813c10f3f7
18 changed files with 612 additions and 8 deletions
+26
View File
@@ -0,0 +1,26 @@
import type { ZoneConfig } from "@/types/gameplay/zone";
import { PYLON_WORLD_POSITION } from "@/data/gameplay/pylonConfig";
export const PYLON_APPROACH_ZONE: ZoneConfig = {
id: "pylon-approach",
position: [
PYLON_WORLD_POSITION[0] - 20,
PYLON_WORLD_POSITION[1],
PYLON_WORLD_POSITION[2] - 5,
],
radius: 12,
height: 18,
oneShot: true,
};
export const PYLON_ARRIVED_ZONE: ZoneConfig = {
id: "pylon-arrived",
position: [
PYLON_WORLD_POSITION[0] - 3,
PYLON_WORLD_POSITION[1],
PYLON_WORLD_POSITION[2] + 2,
],
radius: 8,
height: 15,
oneShot: true,
};