Skip to content

Commit

Permalink
hot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
acyanbird committed Feb 10, 2024
1 parent 72cba14 commit 1a224c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion day.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 1a224c7

Please sign in to comment.