From 1356ba5e311d1f8a4e4d0c7249330c6e87ace42e Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Mon, 29 Sep 2025 09:11:15 +0000 Subject: [PATCH] big sun --- assets/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/main.js b/assets/js/main.js index e5eb124..516b3fb 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -55,7 +55,7 @@ scene.add(stars); // --- Sun --- const sunTexture = textureLoader.load('assets/textures/sun.jpg'); const sunMaterial = new THREE.MeshBasicMaterial({ map: sunTexture }); -const sun = new THREE.Mesh(new THREE.SphereGeometry(5, 32, 32), sunMaterial); +const sun = new THREE.Mesh(new THREE.SphereGeometry(7, 32, 32), sunMaterial); scene.add(sun); // --- Planets & Orbits ---