SetFogDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 24: Line 24:
==See Also==
==See Also==
{{World functions}}
{{World functions}}
[[ru:getGameSpeed]]

Revision as of 10:12, 8 November 2013

This function changes the visible distance of fog.

Syntax

bool setFogDistance ( float distance )

Returns

Returns a bool.

Example

Click to collapse [-]
Server and Client
function fogdistance ( )
    setFogDistance(1.0)
end
addCommandHandler ( "fog", fogdistance )

See Also