home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 51
/
PCGamer51_17Demos.iso
/
games
/
CM
/
CyclingManagerDemoCangas.exe
/
CyclingManagerDemo
/
scripts
/
cfg
/
FogParameters.cfg
< prev
next >
Wrap
Text File
|
2001-06-10
|
983b
|
27 lines
// *************************
// Fog definition
// *************************
var i32x DLC_Fog_Linear = 1; // Linear fog (Start/End param)
var i32x DLC_Fog_Exp = 2; // Exponential fog (Density param)
var i32x DLC_Fog_Pixel = 4; // Pixel based fog
var i32x DLC_Fog_Vertex = 8; // Vertex based fog
var i32x DLC_Fog_RangeBased = 16; // Only for vertex mode (correct rotational artefacts)
// Fog Parameters :
// ID, color, mode, start, end, density
func void UpdateFogsParameters ()
{
SetFogParameters(0,MakeARGB(255,187,221,255),DLC_Fog_Exp| DLC_Fog_Vertex |DLC_Fog_RangeBased, 0.0, 0.0, 0.00025);
SetFogParameters(1,MakeARGB(255,187,221,255),DLC_Fog_Exp | DLC_Fog_Vertex |DLC_Fog_RangeBased, 0.0, 0.0, 0.0004);
SetFogParameters(2,MakeARGB(255,181,191,200),DLC_Fog_Exp | DLC_Fog_Vertex |DLC_Fog_RangeBased, 0.0, 0.0, 0.0007);
SetFogParameters(3,MakeARGB(255,145,152,159),DLC_Fog_Exp | DLC_Fog_Vertex |DLC_Fog_RangeBased, 0.0, 0.0, 0.0015);
}