diff options
author | Stijn Buys <ingar@osirion.org> | 2012-11-11 13:40:19 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-11-11 13:40:19 +0000 |
commit | 89d8f7f384dcd6c201288bf6fe86ab19e59e1a5c (patch) | |
tree | 1324fc641af737d055fa48e107a32b02c4700ca4 /src/render | |
parent | 72f480d7f34e22104fbcfd1561b037b65365fc1f (diff) |
Corrected light attenuation values.
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); } |