]> git.mxchange.org Git - flightgear.git/commitdiff
Tweak red and blue runway light colors a bit more.
authorcurt <curt>
Thu, 24 Oct 2002 14:02:06 +0000 (14:02 +0000)
committercurt <curt>
Thu, 24 Oct 2002 14:02:06 +0000 (14:02 +0000)
src/Objects/matlib.cxx

index efda7fa0d8a74c7ea7dd6ea80aa1449594024848..6a71b94188d444b18fafddae4a9a258ad3b1c69f 100644 (file)
@@ -388,7 +388,7 @@ bool FGMaterialLib::load( const string& mpath ) {
     matlib["RWY_YELLOW_LOW_LIGHTS"] = new FGNewMat(rwy_yellow_low_lights);
 
     // hard coded runway red light state
-    tex_name = gen_standard_dir_light_map( 235, 20, 20, 255 );
+    tex_name = gen_standard_dir_light_map( 235, 90, 90, 255 );
     ssgSimpleState *rwy_red_lights = new ssgSimpleState();
     rwy_red_lights->ref();
     rwy_red_lights->disable( GL_LIGHTING );
@@ -405,7 +405,7 @@ bool FGMaterialLib::load( const string& mpath ) {
     matlib["RWY_RED_LIGHTS"] = new FGNewMat(rwy_red_lights);
 
     // hard coded medium intensity runway red light state
-    tex_name = gen_standard_dir_light_map( 235, 20, 20, 205 );
+    tex_name = gen_standard_dir_light_map( 235, 90, 90, 205 );
     ssgSimpleState *rwy_red_medium_lights = new ssgSimpleState();
     rwy_red_medium_lights->ref();
     rwy_red_medium_lights->disable( GL_LIGHTING );
@@ -422,7 +422,7 @@ bool FGMaterialLib::load( const string& mpath ) {
     matlib["RWY_RED_MEDIUM_LIGHTS"] = new FGNewMat(rwy_red_medium_lights);
 
     // hard coded low intensity runway red light state
-    tex_name = gen_standard_dir_light_map( 235, 20, 20, 205 );
+    tex_name = gen_standard_dir_light_map( 235, 90, 90, 205 );
     ssgSimpleState *rwy_red_low_lights = new ssgSimpleState();
     rwy_red_low_lights->ref();
     rwy_red_low_lights->disable( GL_LIGHTING );
@@ -490,7 +490,7 @@ bool FGMaterialLib::load( const string& mpath ) {
     matlib["RWY_GREEN_LOW_LIGHTS"] = new FGNewMat(rwy_green_low_lights);
 
     // hard coded low intensity taxiway blue light state
-    tex_name = gen_taxiway_dir_light_map( 100, 100, 235, 205 );
+    tex_name = gen_taxiway_dir_light_map( 90, 90, 235, 205 );
     ssgSimpleState *taxiway_blue_low_lights = new ssgSimpleState();
     taxiway_blue_low_lights->ref();
     taxiway_blue_low_lights->disable( GL_LIGHTING );