diff options
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/draw.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/draw.cc b/src/render/draw.cc index 1d99077..12a64ad 100644 --- a/src/render/draw.cc +++ b/src/render/draw.cc @@ -111,9 +111,9 @@ void pass_prepare(float seconds) // add zone lights if (globe->has_flag(core::Entity::Bright)) { - float zone_light_brightness = (globe->color().r + globe->color().g + globe->color().b) / 3; + float zone_light_brightness = math::max(globe->color().r, math::max(globe->color().g, globe->color().b)); Light *zone_light = new Light(globe->location(), globe->color()); - zone_light->set_attenuation(zone_light_brightness * 1.5f, zone_light_brightness * 0.00001f, zone_light_brightness * 0.000000001f); + zone_light->set_attenuation(zone_light_brightness * 2.0f, 0.0f, 0.0f); lightenv_zone.add(zone_light); } |