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

Blip::scale

Материал из RAGE MP Wiki Archive
Версия от 11:49, 10 мая 2018; imported>MrPancakers (Using old blip template)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

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