diff options
author | Graham Linden <graham@lindenlab.com> | 2019-06-18 13:14:27 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-06-18 13:14:27 -0700 |
commit | 4abb342e9564a7740475c3abe60cd62ae5bbc34d (patch) | |
tree | 4136f395983ce0b6883e5dc86b9b42615b40b52d /indra/newview/llvovolume.cpp | |
parent | e7ac7d766d1c817ad43d5bf0b5bba7f07495395b (diff) |
SL-10969
Remove ambiance handling from alpha and blended materials objects for now.
Still too many setups where they get blown out due to attenuation mismatches with deferred.
Diffstat (limited to 'indra/newview/llvovolume.cpp')
-rw-r--r-- | indra/newview/llvovolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 664615d4eb..61eb6f18a2 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -3370,7 +3370,7 @@ F32 LLVOVolume::getLightFalloff() const const LLLightParams *param_block = (const LLLightParams *)getParameterEntry(LLNetworkData::PARAMS_LIGHT); if (param_block) { - return param_block->getFalloff(); + return param_block->getFalloff() * 0.5f; } else { |