SetPedsLODDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Changed picture sizes: 500px->200px)
(change arg desc)
 
Line 10: Line 10:


===Required arguments===  
===Required arguments===  
*'''distance:''' the new peds LOD distance. It must be between '''0''' and '''500'''. (Default for ''high_detail_peds'' on is '''500''', when off, it is '''60''').
*'''distance:''' the new peds LOD distance. This value is clamped to '''0''' '''500'''. (Default for ''high_detail_peds'' on is '''500''', when off, it is '''60''').


===Returns===
===Returns===

Latest revision as of 21:23, 7 October 2022

This function sets the peds LOD distance.

60 units
100 units
500 units

Syntax

bool setPedsLODDistance ( float distance )

Required arguments

  • distance: the new peds LOD distance. This value is clamped to 0500. (Default for high_detail_peds on is 500, when off, it is 60).

Returns

This function returns true if the argument is valid. Returns false otherwise.

Example

This example sets the peds LOD distance to 120.

setPedsLODDistance( 120 )

See also