commit 1c9cd1b97a49cd9d268dbc95f1e7d452af7cde53
parent 8553b82e650f196ec7772a065de73e4fbcbad4b2
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date: Thu, 4 Jul 2024 19:09:30 -0300
change `topView` camera starting position
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tp/src/scene.js b/tp/src/scene.js
@@ -260,7 +260,7 @@ function setupThreeJs() {
const topView = new THREE.PerspectiveCamera(
35, window.innerWidth / window.innerHeight, 0.1, 1000);
- topView.position.set(-50, 60, 50);
+ topView.position.set(-32, 38, 70);
topView.lookAt(0, 0, 0);
topView.name = "topView"
cameras.push(topView);