GetBlipScale: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "==Syntax== <pre>Vector3 NAPI.Blip.GetBlipScale(Blip blip);</pre> === Required Arguments === *'''blip:''' The blip to get the scale from. Parameter input should be in '''Blip'...")
 
m (Xabi moved page NAPI.Blip.GetBlipScale to GetBlipScale)
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
==Syntax==
==Syntax==
<pre>Vector3 NAPI.Blip.GetBlipScale(Blip blip);</pre>
<pre>float NAPI.Blip.GetBlipScale(Blip blip);</pre>


=== Required Arguments ===
=== Required Arguments ===
Line 9: Line 9:
{{Example}}
{{Example}}
<syntaxhighlight lang="C#">
<syntaxhighlight lang="C#">
NAPI.Blip.GetBlipScale(myBlip);
float scale = NAPI.Blip.GetBlipScale(myBlip);
</syntaxhighlight>
</syntaxhighlight>
}}
}}


[[Category:Serverside API]]
[[Category:Serverside API]]

Latest revision as of 12:42, 27 November 2019

Syntax

float NAPI.Blip.GetBlipScale(Blip blip);

Required Arguments

  • blip: The blip to get the scale from. Parameter input should be in Blip type

Example

C# Syntax

Example

float scale = NAPI.Blip.GetBlipScale(myBlip);