diff options
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llinventory/llsettingssky.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llinventory/llsettingssky.cpp b/indra/llinventory/llsettingssky.cpp index 72a3c7b01c..af7425cca0 100644 --- a/indra/llinventory/llsettingssky.cpp +++ b/indra/llinventory/llsettingssky.cpp @@ -954,7 +954,7 @@ void LLSettingsSky::updateSettings() F32 LLSettingsSky::getSunMoonGlowFactor() const { - LLVector3 sunDir = getSunDirection(); + LLVector3 sunDir = getSunDirection(); LLVector3 moonDir = getMoonDirection(); // sun glow at full iff moon is not up @@ -968,7 +968,7 @@ F32 LLSettingsSky::getSunMoonGlowFactor() const if (moonDir.mV[2] > 0.0f) { - return moonDir.mV[VZ] / 3.0f; // ramp moon glow at moonset + return 0.25f; } return 0.0f; |