Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Goers <mega@osirion.org>2012-05-03 01:15:11 +0000
committerEvan Goers <mega@osirion.org>2012-05-03 01:15:11 +0000
commit1e39d6128a1ec15a1d34b3831391348902ce2be4 (patch)
tree8bf8ea3b80fed20d8d56dc639cf3deff52a28f55 /src/ui/modelview.cc
parent944b1170e4c03e394033a9b91b40c111a1107a0c (diff)
Tweaked light attenuation.
Diffstat (limited to 'src/ui/modelview.cc')
-rwxr-xr-xsrc/ui/modelview.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/modelview.cc b/src/ui/modelview.cc
index b13b642..e4975a3 100755
--- a/src/ui/modelview.cc
+++ b/src/ui/modelview.cc
@@ -22,7 +22,7 @@ namespace ui
{
const float LIGHT_DISTANCE = -10.0f;
-const float LIGHT_ATTENUATION = 2.0f;
+const float LIGHT_ATTENUATION = 0.2f;
ModelView::ModelView(Widget *parent) : Widget(parent)
{
@@ -190,7 +190,7 @@ void ModelView::draw_globe()
math::Vector3f(LIGHT_DISTANCE * reference_radius, 0, 0),
math::Color(1.0f, 1.0f, 1.0f)
);
- light->set_attenuation(0.0f, 1.0f, 0.0f);
+ light->set_attenuation(LIGHT_ATTENUATION, LIGHT_ATTENUATION, 0.0f);
render::LightEnvironment lightenv;
lightenv.add(light);
@@ -290,7 +290,7 @@ void ModelView::draw_model()
math::Vector3f(LIGHT_DISTANCE * reference_radius, 0, 0),
math::Color(1.0f, 1.0f, 1.0f)
);
- light->set_attenuation(0.0f, 1.0f, 0.0f);
+ light->set_attenuation(LIGHT_ATTENUATION, LIGHT_ATTENUATION, 0.0f);
render::LightEnvironment lightenv;
lightenv.add(light);