ResetFogDistance

From Multi Theft Auto: Wiki
Revision as of 13:17, 3 August 2014 by Myonlake (talk | contribs) ("Added" resetFogDistance( ) function page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function resets the fog render distance to its default state.

[[{{{image}}}|link=|]] Note: The function will reset the fog render distance to false server-side, as there is no default value to begin with.

Syntax

bool resetFogDistance ( )

Returns

Returns true if operation was successful, false otherwise.

Example

This example will demonstrate basic functionality of the function.

setFogDistance( 500 )
outputDebugString( "Fog render distance: " .. getFogDistance( ) )
resetFogDistance( )
outputDebugString( "New fog render distance: " .. tostring( getFogDistance( ) ) )

See Also