Blip::getColour: Difference between revisions
MrPancakers (talk | contribs) mNo edit summary |
m (Replaced HTML with template) |
||
| Line 2: | Line 2: | ||
== Syntax == | == Syntax == | ||
<pre> | |||
< | |||
blip.getColour(); | blip.getColour(); | ||
</ | </pre> | ||
=== Return Value === | === Return Value === | ||
| Line 12: | Line 11: | ||
== Examples == | == Examples == | ||
Retrieving the colour value from the blip called policeBlip | Retrieving the colour value from the blip called policeBlip | ||
{{ClientsideCode| | |||
< | <pre> | ||
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, | ||
shortRange: true, | |||
}); | }); | ||
let getBlipColour = policeBlip.getColour(); | let getBlipColour = policeBlip.getColour(); | ||
mp.gui.chat.push("Colour: " + getBlipColour); | mp.gui.chat.push("Colour: " + getBlipColour); | ||
//Output: "Colour: 3" | //Output: "Colour: 3" | ||
</ | </pre> | ||
}} | |||
==See also== | ==See also== | ||
Revision as of 13:13, 26 October 2018
Property to return the colour value of the blip.
Syntax
blip.getColour();
Return Value
- Number
Examples
Retrieving the colour value from the blip called policeBlip
Client-Side
let policeBlip = mp.blips.new(60, new mp.Vector3(407.95, -961.05, 0), {
color: 3,
shortRange: true,
});
let getBlipColour = policeBlip.getColour();
mp.gui.chat.push("Colour: " + getBlipColour);
//Output: "Colour: 3"
See also
- Functions
- Properties