diff --git a/app/components/flightlab/pfd/PfdAircraftModel.vue b/app/components/flightlab/pfd/PfdAircraftModel.vue index 9bc7885..76df470 100644 --- a/app/components/flightlab/pfd/PfdAircraftModel.vue +++ b/app/components/flightlab/pfd/PfdAircraftModel.vue @@ -102,11 +102,11 @@ function initScene() { scene.background = new THREE.Color(0x1a5fb4) scene.fog = new THREE.Fog(0x62a0ea, 30, 80) - // Camera — view from front-left, slightly above - // Aircraft nose points -Z, so camera at +Z looks at front + // Camera — chase-style view from behind and slightly above + // Aircraft nose points -Z, so +Z is behind the aircraft camera = new THREE.PerspectiveCamera(50, width / height, 0.1, 200) - camera.position.set(-4, 3, -6) - camera.lookAt(0, 0, 0) + camera.position.set(0, 2.6, 8) + camera.lookAt(0, 0.2, -2.2) // Lights const ambientLight = new THREE.AmbientLight(0xffffff, 0.6) diff --git a/app/pages/flightlab/medienstationen/stick-input.vue b/app/pages/flightlab/medienstationen/stick-input.vue index 5a10a59..5c5e3b8 100644 --- a/app/pages/flightlab/medienstationen/stick-input.vue +++ b/app/pages/flightlab/medienstationen/stick-input.vue @@ -65,7 +65,7 @@