Skip to content

Commit a7c4879

Browse files
committed
Small tweaks to skybox initial position and container opacity
1 parent ce7e132 commit a7c4879

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/Starfield.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ const Starfield = ({ onSkyboxLoaded = () => { }, uiVisible = false }) => {
222222
skyboxMesh = new THREE.Mesh(sphereGeometry, skyboxMaterial);
223223

224224
// Initial skybox positioning
225-
skyboxMesh.rotation.x = Math.PI * 0.2;
226-
skyboxMesh.rotation.y = Math.PI * 0.2;
227-
skyboxMesh.rotation.z = Math.PI * 0.2;
225+
skyboxMesh.rotation.x = Math.PI * -0.1;
226+
skyboxMesh.rotation.y = Math.PI * 0;
227+
skyboxMesh.rotation.z = Math.PI * 0;
228228

229229
scene.add(skyboxMesh);
230230

src/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
--border_radius: 20px;
1919
--internal_padding: 20px;
20-
--item_background_color: rgba(0, 0, 0, 0.75);
20+
--item_background_color: rgba(0, 0, 0, 0.5);
2121
--button_size: 25px;
2222
--transition_time: 0.4s;
2323
}

0 commit comments

Comments
 (0)