larger vortex

This commit is contained in:
2023-07-07 22:36:19 +02:00
parent c4979b5890
commit bdf99b41b7
3 changed files with 4 additions and 4 deletions

4
app.js
View File

@@ -53,11 +53,11 @@ document.body.appendChild(renderer.domElement)
scene.camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000)
scene.camera.position.set(5, 0, 16)
scene.ambientLight = new THREE.AmbientLight(0xffffff, 0.2)
scene.ambientLight = new THREE.AmbientLight(0xffffff, 0.1)
scene.add(scene.ambientLight)
scene.directionalLight = new THREE.DirectionalLight(0xffffff, 15)
scene.directionalLight.position.set(5, 0, -10)
scene.directionalLight.position.set(5, 100, -10)
scene.add(scene.directionalLight)
const holdQueue = new HoldQueue()