Interface IEffectFog
The common effect fog rendering parameters.
public interface IEffectFog
Properties
FogColor
The floating point fog color.
Vector3 FogColor { get; set; }
Property Value
FogEnabled
Used to toggle the rendering of fog.
bool FogEnabled { get; set; }
Property Value
FogEnd
The world space distance from the camera at which fogging is fully applied.
float FogEnd { get; set; }
Property Value
Remarks
FogEnd should be greater than FogStart. If FogEnd and FogStart are the same value everything is fully fogged.
FogStart
The world space distance from the camera at which fogging begins.
float FogStart { get; set; }
Property Value
Remarks
FogStart should be less than FogEnd. If FogEnd and FogStart are the same value everything is fully fogged.