Please Help! Tron Skins Failed Me!

Hey so I'm shifting around the forums and I see these tron skins for RocketLauncher and I'm impressed http://forums.legionsoverdrive.com/threads/evilfate-s-tron-legacy-skins-release.1519/
But I changed my RocketLAuncher Skins and as said before in that thread^
The only problem ive encountered is that when you face a certain direction with the rocket launcher it reflects the light and makes it look white...

Now yeah I have new skin but it's just the dds file. The Flare and glow and the trial as mix colors is cool, but when i face the sun i don't like light on it please healp!
 

Poponfu

Lead Developer
change

Code:
new Material(RocketLauncherMaterial)
{
  mapTo = "rocketLauncher";
  baseTex[0] = "legions/data/shapes/weapons/rocketLauncher/rocketLauncher.dds";//DXT5
  bumpTex[0] = "legions/data/shapes/weapons/rocketLauncher/rocketLauncher_nrm.dds";//DXT5N
  pixelSpecular[0] = true;
  specular[0] = "0.4 0.4 0.4 1.0";
  //specular[0] = "0.8 0.0 0.0 1.0";
  specularPower[0] = 16.0;
  ambientCube = GradientAmbientCubemap;
};

to

Code:
new Material(RocketLauncherMaterial)
{
  mapTo = "rocketLauncher";
  baseTex[0] = "legions/data/shapes/weapons/rocketLauncher/rocketLauncher.dds";//DXT5
  bumpTex[0] = "legions/data/shapes/weapons/rocketLauncher/rocketLauncher_nrm.dds";//DXT5N
};

in \client\materials\rocketLauncher.cs

you might even add in some glow flags if you are feeling adventurous and see how that works out , might make it more tron.
 
Top