SetVehiclesLODDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
 
Line 15: Line 15:
{{OptionalArg}}  
{{OptionalArg}}  
*'''trainsAndPlanesDistance:''' distance used for trains and planes, this value is clamped to 0 – 500
*'''trainsAndPlanesDistance:''' distance used for trains and planes, this value is clamped to 0 – 500
== Returns ==
This function returns ''true'' if arguments are valid. Returns ''false'' otherwise.


==Example==
==Example==

Latest revision as of 21:21, 7 October 2022

Sets the distance of vehicles LOD.

Syntax

bool setVehiclesLODDistance(float vehiclesDistance [, float trainsAndPlanesDistance = vehiclesDistance * 2.14])

Required Arguments

  • vehiclesDistance: general distance used for most vehicles, this value is clamped to 0 – 500

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • trainsAndPlanesDistance: distance used for trains and planes, this value is clamped to 0 – 500

Returns

This function returns true if arguments are valid. Returns false otherwise.

Example

addEventHandler("onClientResourceStart",resourceRoot,function()
	setVehiclesLODDistance(10)
end)

See Also