SetBlipScale: Difference between revisions

From RAGE Multiplayer Wiki
(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...")
 
m (Xabi moved page NAPI.Blip.SetBlipScale to SetBlipScale)
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:


==Example==
==Example==
Sets any existing white blip to blue blip.
{{CSharpContainer|
{{CSharpContainer|
{{Example}}
{{Example}}

Latest revision as of 12:43, 27 November 2019

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

C# Syntax

Example

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