SetBlipScale

From RAGE Multiplayer Wiki
Revision as of 15:31, 26 November 2019 by Muphy (talk | contribs) (Created page with "Method allows the increase/decrease the size of a blip. ==Syntax== <pre>void NAPI.Blip.SetBlipScale(Blip blip, float scale);</pre> === Required Arguments === *'''blip''': pa...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Method allows the increase/decrease the size of a blip.

Syntax

void NAPI.Blip.SetBlipScale(Blip blip, float scale);

Required Arguments

  • blip: parameter input should be in Blip type.
  • scale: parameter input should be in float type.

Example

Sets any existing white blip to blue blip.

C# Syntax

Example

NAPI.Blip.SetBlipScale(myBlip, 10f);