From 0f84f90e05bb14c91d7332c119a1e853feecc0fe Mon Sep 17 00:00:00 2001 From: adrien Date: Sat, 5 Oct 2024 15:22:15 +0200 Subject: [PATCH] tweak space theme --- jsm/Vortex.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jsm/Vortex.js b/jsm/Vortex.js index 25e331e..e7f6698 100644 --- a/jsm/Vortex.js +++ b/jsm/Vortex.js @@ -70,10 +70,10 @@ export class Vortex extends THREE.Group { new THREE.TextureLoader(this.loadingManager).load("./images/dark.jpg", texture => { texture.wrapS = THREE.RepeatWrapping texture.wrapT = THREE.MirroredRepeatWrapping - texture.repeat.set(2, 2) + texture.repeat.set(2, 4) this.darkCylinder.material.map = texture }) - this.darkCylinder.material.opacity = 0.05 + this.darkCylinder.material.opacity = 0.08 new THREE.TextureLoader(this.loadingManager).load("./images/colorfull.jpg", texture => { texture.wrapS = THREE.RepeatWrapping @@ -81,7 +81,7 @@ export class Vortex extends THREE.Group { texture.repeat.set(2, 2) this.colorFullCylinder.material.map = texture }) - this.colorFullCylinder.material.opacity = 0.14 + this.colorFullCylinder.material.opacity = 0.15 this.globalRotation = 0.028 this.darkTextureRotation = 0.006