diff options
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/draw.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/draw.cc b/src/render/draw.cc index da0a063..b956c18 100644 --- a/src/render/draw.cc +++ b/src/render/draw.cc @@ -115,7 +115,7 @@ void pass_prepare(float seconds) if (globe->has_flag(core::Entity::Bright)) { 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 * 2.0f, 0.0f, 0.0f); + zone_light->set_attenuation(zone_light_brightness * 1.5f, zone_light_brightness * 0.00001f, zone_light_brightness * 0.000000001f); lightenv_zone.add(zone_light); } |