GetVehiclesLODDistance

From Multi Theft Auto: Wiki
Revision as of 11:30, 16 July 2017 by MaK$iM (talk | contribs)
Jump to navigation Jump to search

Accessories-text-editor.png Script Example Missing Function GetVehiclesLODDistance needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

Returns the distance of vehicles LOD.

Syntax

float, float getVehiclesLODDistance ( )

Returns

  • float: general distance used for most vehicles
  • float: distance used for trains and planes

Example

This example shows the LOD distance of vehicles, helicopters and trains when the client resource started

addEventHandler("onClientResourceStart",resourceRoot,function()
	local vehicle,planes_trains = getVehiclesLODDistance()
	outputChatBox("LOD Distance of Vehicles: "..math.floor(vehicle),0,255,0)
	outputChatBox("LOD Distance of Planes and Trains: "..math.floor(planes_trains),0,255,0)
end)

See Also