IrrlichtNETCP.VideoDriver.SetFog C# (CSharp) Method

SetFog() public method

public SetFog ( Color color, bool linearFog, float start, float end, float density, bool pixelFog, bool rangeFog ) : void
color Color
linearFog bool
start float
end float
density float
pixelFog bool
rangeFog bool
return void
        public void SetFog(Color color, bool linearFog, float start, float end, float density, bool pixelFog, bool rangeFog)
        {
            VideoDriver_SetFog(_raw, color.ToUnmanaged(), linearFog, start, end, density, pixelFog, rangeFog);
        }
VideoDriver