import * as THREE from 'three' // Premium Apple-inspired cinematic keyframes looking directly at the front of each building export const cameraPositions = [ { // Stage 01: First Mile Warehouse (Front-on view of loading bays, lowered target to center truck) progress: 0.0, position: new THREE.Vector3(19.727, 7.5, -14.0), target: new THREE.Vector3(19.727, 2.0, -31.02), }, { // Transition 01: Highway Cruise (Looking down at the highway joining road) progress: 0.25, position: new THREE.Vector3(0.0, 12.0, -12.0), target: new THREE.Vector3(6.447, 2.0, -19.06), }, { // Stage 02: Mid Mile Hub (Front-on view of loading bays, lowered target to center truck) progress: 0.5, position: new THREE.Vector3(-19.146, 6.5, 10.0), target: new THREE.Vector3(-19.146, 1.5, -6.00), }, { // Stage 03: Last Mile Delivery Center (Front-on view of local hub, lowered target to center truck) progress: 0.75, position: new THREE.Vector3(19.263, 5.5, 27.0), target: new THREE.Vector3(19.263, 1.2, 4.0), }, { // Stage 04: Centralized Dashboard (Front-on view of the analytics monitor screen) progress: 1.0, position: new THREE.Vector3(-13.5, 5.0, 31.0), target: new THREE.Vector3(-7.7, 3.8, 25.4), }, ]