GetBlipScale: Difference between revisions

From RAGE Multiplayer Wiki
Line 9: Line 9:
{{Example}}
{{Example}}
<syntaxhighlight lang="C#">
<syntaxhighlight lang="C#">
NAPI.Blip.GetBlipScale(myBlip);
float f = NAPI.Blip.GetBlipScale(myBlip);
</syntaxhighlight>
</syntaxhighlight>
}}
}}


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

Revision as of 15:10, 26 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 f = NAPI.Blip.GetBlipScale(myBlip);