From 3222d2ed3d96bb50e1f4cca89d70dc3083f56335 Mon Sep 17 00:00:00 2001 From: math-pixel <59537610+math-pixel@users.noreply.github.com> Date: Thu, 14 May 2026 11:16:58 +0200 Subject: [PATCH] update: position intro --- src/data/player/playerConfig.ts | 2 +- src/data/zones.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/player/playerConfig.ts b/src/data/player/playerConfig.ts index 360cebe..6fa1c8c 100644 --- a/src/data/player/playerConfig.ts +++ b/src/data/player/playerConfig.ts @@ -11,5 +11,5 @@ export const PLAYER_MAX_DELTA = 0.05; export const PLAYER_ACCELERATION_MULTIPLIER = 9; export const PLAYER_XZ_DAMPING_FACTOR = 8; -export const PLAYER_SPAWN_POSITION_GAME: Vector3Tuple = [0, 50, 0]; +export const PLAYER_SPAWN_POSITION_GAME: Vector3Tuple = [6.56,5,71.55]; export const PLAYER_SPAWN_POSITION_PHYSICS: Vector3Tuple = [0, 3, 0]; diff --git a/src/data/zones.ts b/src/data/zones.ts index ec5c5f5..74246d4 100644 --- a/src/data/zones.ts +++ b/src/data/zones.ts @@ -4,9 +4,9 @@ import type { Vector3Tuple } from "@/types/three/three"; export const ZONES: Zone[] = [ { id: "fabrikExit", - position: [-5, 25, -15] as Vector3Tuple, - radius: 10, - height: 20, + position: [18.43,0,75.3] as Vector3Tuple, + radius: 4, + height: 10, targetStep: "bike" as GameStep, }, ];