camera init position

This commit is contained in:
Adrien MALINGREY 2024-09-27 00:52:19 +02:00
parent c8eb029987
commit 1b0f1c07d2
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ class TetraControls extends OrbitControls {
this.maxPolarAngle = 2.1 this.maxPolarAngle = 2.1
this.minAzimuthAngle = 0.9 - Math.PI / 2 this.minAzimuthAngle = 0.9 - Math.PI / 2
this.maxAzimuthAngle = 2.14 - Math.PI / 2 this.maxAzimuthAngle = 2.14 - Math.PI / 2
this.target.set(5, 7, 0) this.target.set(5, 7.5, 0)
this.addEventListener("start", () => domElement.style.cursor = "grabbing") this.addEventListener("start", () => domElement.style.cursor = "grabbing")
this.addEventListener("end", () => domElement.style.cursor = "grab") this.addEventListener("end", () => domElement.style.cursor = "grab")

View File

@ -7,7 +7,7 @@ export class TetraScene extends THREE.Scene {
super() super()
this.camera = new THREE.PerspectiveCamera(100, window.innerWidth / window.innerHeight, 0.1, 1000) this.camera = new THREE.PerspectiveCamera(100, window.innerWidth / window.innerHeight, 0.1, 1000)
this.camera.position.set(5, 3, 12) this.camera.position.set(5, 4, 12)
this.vortex = new Vortex(loadingManager) this.vortex = new Vortex(loadingManager)
this.add(this.vortex) this.add(this.vortex)

View File

@ -271,7 +271,7 @@ class Tetromino extends THREE.Group {
} else { } else {
scheduler.resetTimeout(this.onLockDown, this.lockDelay) scheduler.resetTimeout(this.onLockDown, this.lockDelay)
this.locking = true this.locking = true
this.parent?.ghost.visible = false this.parent.ghost.visible = false
} }
return true return true
} else if (translation == TRANSLATION.DOWN) { } else if (translation == TRANSLATION.DOWN) {