ResetVehiclesLODDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(→‎See Also: +engineGet/SetModelLODDistance)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Client function}}{{Needs Example}}__NOTOC__
__NOTOC__
{{Client function}}
{{New feature/item|3.0154|1.5.3|11199|
{{New feature/item|3.0154|1.5.3|11199|
Resets the distance of vehicles LOD to default. Default values depends on client setting. If client has enabled ''high detail vehicles'' in video options, value will be reset to (500, 500) - otherwise to (70, 150). You can check value of this option using [[dxGetStatus]] (''SettingHighDetailVehicles'').
Resets the distance of vehicles LOD to default. Default values depends on client setting. If client has enabled ''high detail vehicles'' in video options, value will be reset to (500, 500) - otherwise to (70, 150). You can check value of this option using [[dxGetStatus]] (''SettingHighDetailVehicles'').
Line 7: Line 8:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool resetVehiclesLODDistance ( )
bool resetVehiclesLODDistance ( )
</syntaxhighlight>
===Returns===
Returns true if the vehicles LOD distance was reset, false otherwise.
==Example==
<syntaxhighlight lang="lua">
function resetLOD( )
    resetVehiclesLODDistance( )
end
addCommandHandler( "resetlod", resetLOD )
</syntaxhighlight>
</syntaxhighlight>


Line 12: Line 24:
* [[engineGetModelLODDistance]]
* [[engineGetModelLODDistance]]
* [[engineSetModelLODDistance]]
* [[engineSetModelLODDistance]]
{{World functions}}
{{Client world functions}}

Latest revision as of 23:16, 22 July 2018

Resets the distance of vehicles LOD to default. Default values depends on client setting. If client has enabled high detail vehicles in video options, value will be reset to (500, 500) - otherwise to (70, 150). You can check value of this option using dxGetStatus (SettingHighDetailVehicles).

Syntax

bool resetVehiclesLODDistance ( )

Returns

Returns true if the vehicles LOD distance was reset, false otherwise.

Example

function resetLOD( )
    resetVehiclesLODDistance( )
end
addCommandHandler( "resetlod", resetLOD )

See Also