Blip::drawRange

From RAGE Multiplayer Wiki
Revision as of 20:32, 19 January 2018 by Mcfloy (talk | contribs) (→‎See Also)

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