diff options
Diffstat (limited to 'source/base/StarCellularLighting.cpp')
-rw-r--r-- | source/base/StarCellularLighting.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/base/StarCellularLighting.cpp b/source/base/StarCellularLighting.cpp index ebca0ad..48ba265 100644 --- a/source/base/StarCellularLighting.cpp +++ b/source/base/StarCellularLighting.cpp @@ -223,7 +223,7 @@ void CellularLightIntensityCalculator::addSpreadLight(Vec2F const& position, flo void CellularLightIntensityCalculator::addPointLight(Vec2F const& position, float light, float beam, float beamAngle, float beamAmbience) { Vec2F arrayPosition = position - Vec2F(m_calculationRegion.min()); - m_lightArray.addPointLight({arrayPosition, light, beam, beamAngle, beamAmbience}); + m_lightArray.addPointLight({arrayPosition, light, beam, beamAngle, beamAmbience, false}); } |