From ac05d434fa3f0fda827a38e1a4a2cc1097b2a4dd Mon Sep 17 00:00:00 2001 From: leca Date: Thu, 7 Dec 2023 13:00:47 +0300 Subject: [PATCH] Fixed start camera position --- view/controls.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/controls.js b/view/controls.js index a19b774..214ca2f 100644 --- a/view/controls.js +++ b/view/controls.js @@ -6,7 +6,7 @@ export class SpiralCamera { constructor(canvas, segmentHeight) { // this.camera = new THREE.PerspectiveCamera(75, canvas.clientWidth / canvas.clientHeight, 0.1, 1000); this.camera = new THREE.PerspectiveCamera(75, canvas.clientWidth / canvas.clientHeight, 0.1, 1000); - this.angle = 0; + this.angle = 90; this.distance = 5; this.canvas = canvas this.offset = 0;