GetBlipScale: Difference between revisions

From RAGE Multiplayer Wiki
m (Xabi moved page NAPI.Blip.GetBlipScale to GetBlipScale)
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:
{{Example}}
{{Example}}
<syntaxhighlight lang="C#">
<syntaxhighlight lang="C#">
float f = 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);