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, }, ];