Перейти к содержанию

Blip::scale

Материал из RAGE MP Wiki Archive

This function is used to change the blip scale.

Syntax

<syntaxhighlight lang="typescript"> blip.scale = 2; </syntaxhighlight>

Example

This will change a blip scale to 2.

Server-Side

<syntaxhighlight lang="javascript"> let createdBlip = mp.blips.new(1, new mp.Vector3(0, 0, 0));

createdBlip.scale = 2; </syntaxhighlight>

See Also