From 1dde23a0c948d3f002789de3c7d096ae063f72e7 Mon Sep 17 00:00:00 2001 From: ehofman Date: Tue, 2 Sep 2003 09:11:21 +0000 Subject: [PATCH] Update some light parameters --- simgear/scene/sky/cloud.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/simgear/scene/sky/cloud.cxx b/simgear/scene/sky/cloud.cxx index 1f62b7cd..720e53cd 100644 --- a/simgear/scene/sky/cloud.cxx +++ b/simgear/scene/sky/cloud.cxx @@ -468,10 +468,10 @@ ssgSimpleState *sgCloudMakeState( const string &path ) { state->enable( GL_TEXTURE_2D ); state->enable( GL_COLOR_MATERIAL ); state->setColourMaterial( GL_AMBIENT_AND_DIFFUSE ); - state->setMaterial( GL_EMISSION, 0, 0, 0, 1 ); - state->setMaterial( GL_AMBIENT, 0.7, 0.7, 0.7, 1.0 ); - state->setMaterial( GL_DIFFUSE, 0.9, 0.9, 0.9, 1.0 ); - state->setMaterial( GL_SPECULAR, 1.0, 1.0, 1.0, 5.0 ); + state->setMaterial( GL_EMISSION, 0.05, 0.05, 0.05, 1.0 ); + state->setMaterial( GL_AMBIENT, 0.2, 0.2, 0.2, 1.0 ); + state->setMaterial( GL_DIFFUSE, 0.5, 0.5, 0.5, 1.0 ); + state->setMaterial( GL_SPECULAR, 1.0, 1.0, 1.0, 1.0 ); state->enable( GL_BLEND ); state->enable( GL_ALPHA_TEST ); state->setAlphaClamp( 0.01 ); -- 2.39.2