GetBlipScale: Difference between revisions
(→Syntax) |
m (Xabi moved page NAPI.Blip.GetBlipScale to GetBlipScale) |
||
| (2 intermediate revisions by one other user not shown) | |||
| 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);