SetFogColor - Cell
Jump to navigation
Jump to search
Member of: Cell Script
Sets the near and far fog colors for this cell. Only works in non-sky-lit interiors.
Syntax[edit | edit source]
Function SetFogColor(int aiNearRed, int aiNearGreen, int aiNearBlue, \
int aiFarRed, int aiFarGreen, int aiFarBlue) native
Parameters[edit | edit source]
- aiNearRed: The red component of the near color, 0-255. (Clipped to 0 and 255 if above or below the values)
- aiNearGreen: The green component of the near color, 0-255. (Clipped to 0 and 255 if above or below the values)
- aiNearBlue: The blue component of the near color, 0-255. (Clipped to 0 and 255 if above or below the values)
- aiFarRed: The red component of the near color, 0-255. (Clipped to 0 and 255 if above or below the values)
- aiFarGreen: The green component of the near color, 0-255. (Clipped to 0 and 255 if above or below the values)
- aiFarBlue: The blue component of the near color, 0-255. (Clipped to 0 and 255 if above or below the values)
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Give this cell fog with a red near color, and a blue far color
FoggyCell.SetFogColor(255, 0, 0, 0, 0, 255)