From 68c003f0b7b491a3b30e4e86f2036bcf3d92f9c0 Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Sun, 5 Nov 2023 18:34:43 -0700 Subject: Even better stars (: --- src/stars.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stars.c') diff --git a/src/stars.c b/src/stars.c index 2b036e9..2a6b9fa 100644 --- a/src/stars.c +++ b/src/stars.c @@ -36,7 +36,7 @@ void drawStars(Game * game, Stars * stars) { for (i = 0; i < STAR_COUNT; ++i) { if (stars->starsUsed[i]) { - DrawSphereEx(stars->stars[i], 0.5 - (Vector3Distance(stars->stars[i], player->position) * 0.005), 4, 4, WHITE); + DrawSphereEx(stars->stars[i], 1.0 - (Vector3Distance(stars->stars[i], player->position) * 0.005), 4, 4, WHITE); // Flag for reset if to close or far. float distance = Vector3Distance(stars->stars[i], player->position); -- cgit v1.2.3