Blip::alpha

From RAGE Multiplayer Wiki
Revision as of 14:36, 8 December 2017 by TiaqoY0 (talk | contribs)

This function is used to change the blip alpha.

Syntax

blip.alpha = 1;

Example

This will change a blip to be transparent.

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

createdBlip.alpha = 0;

See Also