From 1a224c7d960aaf43f9dcc0c17aa40356ce863cca Mon Sep 17 00:00:00 2001 From: acyanbird Date: Sat, 10 Feb 2024 23:34:49 +0000 Subject: [PATCH] hot fix --- day.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day.js b/day.js index cf950e3..f944042 100644 --- a/day.js +++ b/day.js @@ -325,7 +325,7 @@ function createStar() { function createStars() { for (let i = 0; i < 15; i += 1) { star = createStar(); - star.position.set(randomNum(-4, 4), 0.5, randomNum(-140, -60)); + star.position.set(randomNum(-4, 4), 0.2, randomNum(-140, -60)); stars.push(star); scene.add(star); }