Change the star density range from 0.01 to 1.0 to the full 0.0 to 1.0 now that I'm lerping between min and max values

master
Andrew Copland 2021-01-10 12:37:11 +00:00 committed by Webster Sheets
parent c8d509ab1f
commit d1ea10b433
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public:
static void SetAmountBackgroundStars(const float pc)
{
amountOfBackgroundStarsDisplayed = Clamp(pc, 0.01f, 1.0f);
amountOfBackgroundStarsDisplayed = Clamp(pc, 0.0f, 1.0f);
bRefreshBackgroundStars = true;
}
static float GetAmountBackgroundStars() { return amountOfBackgroundStarsDisplayed; }