Blip::drawRange: Difference between revisions

From RAGE Multiplayer Wiki
No edit summary
Line 19: Line 19:


==See Also==
==See Also==
{{Blip_function}}
{{Blip_functions}}

Revision as of 20:32, 19 January 2018

This function is used to change the blip draw range.

Syntax

blip.drawRange = 128;

Example

This will change a blip draw range to 10 meters.

Server-Side
let createdBlip = mp.blips.new(1, new mp.Vector3(0, 0, 0));

createdBlip.drawRange = 10;

See Also