Blip::getAlpha: Difference between revisions

From RAGE Multiplayer Wiki
mNo edit summary
m (Replaced HTML with template)
Line 2: Line 2:


== Syntax ==
== Syntax ==
 
<pre>
<syntaxhighlight lang="javascript">
blip.getAlpha();
blip.getAlpha();
</syntaxhighlight>
</pre>


=== Return Value ===
=== Return Value ===
Line 11: Line 10:


== Examples ==
== Examples ==
Retrieving the alpha value from the blip called policeBlip
Retrieving the alpha value from the blip called policeBlip


<div class="header" style="background-color: #AE4040; color: #FFFFFF; border: 2px solid #AE4040;">
{{ClientsideCode|
<div style="margin: 10px 10px 10px 10px;"><b>Client-Side</b></div>
<pre>
<syntaxhighlight lang="javascript">
let policeBlip = mp.blips.new(60, new mp.Vector3(407.95, -961.05, 0), {
let policeBlip = mp.blips.new(60, new mp.Vector3(407.95, -961.05, 0),
     color: 3,
     {
    alpha: 50,
        color: 3,
    shortRange: true,
        alpha: 50,
        shortRange: true,
});
});


let getBlipAlpha = policeBlip.getAlpha();
let getBlipAlpha = policeBlip.getAlpha();
mp.gui.chat.push("Alpha:" + getBlipAlpha);
mp.gui.chat.push("Alpha:" + getBlipAlpha);
//Output: Alpha: 50"
//Output: Alpha: 50"
</syntaxhighlight>
</pre>
</div>
}}


== See Also ==
== See Also ==

Revision as of 13:10, 26 October 2018

Property to return the alpha value of the blip.

Syntax

blip.getAlpha();

Return Value

  • Number

Examples

Retrieving the alpha value from the blip called policeBlip

Client-Side
let policeBlip = mp.blips.new(60, new mp.Vector3(407.95, -961.05, 0), {
    color: 3,
    alpha: 50,
    shortRange: true,
});

let getBlipAlpha = policeBlip.getAlpha();
mp.gui.chat.push("Alpha:" + getBlipAlpha);
//Output: Alpha: 50"

See Also