GetVehiclesLODDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(→‎See Also: +engineGet/SetModelLODDistance)
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Client function}}{{Needs Example}}__NOTOC__
{{Client function}}__NOTOC__
{{New feature/item|3.0154|1.5.3|11199|
{{New feature/item|3.0154|1.5.3|11199|
Returns the distance of vehicles LOD.
Returns the distance of vehicles LOD.
Line 12: Line 12:
* '''float:''' general distance used for most vehicles
* '''float:''' general distance used for most vehicles
* '''float:''' distance used for trains and planes
* '''float:''' distance used for trains and planes
==Example==
This example shows the lod distance of vehicles
<syntaxhighlight lang="lua">
addEventHandler("onClientResourceStart",resourceRoot,function()
local vehicles,planes_trains = getVehiclesLODDistance()
outputChatBox("general distance of most vehicles: "..math.floor(vehicles),0,255,0)
outputChatBox("distance of planes and trains: "..math.floor(planes_trains),0,255,0)
end)
</syntaxhighlight>


==See Also==
==See Also==
* [[engineGetModelLODDistance]]
* [[engineGetModelLODDistance]]
* [[engineSetModelLODDistance]]
* [[engineSetModelLODDistance]]
{{World functions}}
{{Client world functions}}

Latest revision as of 23:17, 22 July 2018

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

addEventHandler("onClientResourceStart",resourceRoot,function()
	local vehicles,planes_trains = getVehiclesLODDistance()
	outputChatBox("general distance of most vehicles: "..math.floor(vehicles),0,255,0)
	outputChatBox("distance of planes and trains: "..math.floor(planes_trains),0,255,0)
end)

See Also