Ignore:
Timestamp:
07/03/07 15:49:12 (17 years ago)
Author:
szirmay
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Illum/Ogre/Media/Station/StationBase.hlsl

    r2474 r2507  
    201201        float4 diffuseColor = tex2D(colorTexture, IN.texCoord); 
    202202        float4 obscurancescolor = tex2D(obscuranceTexture, IN.texCoord); 
    203         float4 combinedColor = diffuseColor * obscurancescolor; 
     203        //float4 combinedColor = diffuseColor * obscurancescolor; 
     204        float4 combinedColor = diffuseColor; 
    204205         
    205206        //---------------------------------------------------------------------------------------------------------------- 
     
    243244        float4 indirect = PathMapIndirect(PathMap, WeightIndexMap, WeightMap, IN.texCoord); 
    244245        indirect *= diffuseColor; 
    245         Color = Color + indirect; 
     246        Color = Color + indirect * 1.5; 
     247        //Color = Color + diffuseColor * 0.1; 
    246248         
    247249        if(causticReceiver) 
Note: See TracChangeset for help on using the changeset viewer.