Blip::Blip: Difference between revisions
(→Syntax) |
MrPancakers (talk | contribs) m (Fancy border added for example) |
||
| Line 38: | Line 38: | ||
This creates a blip at the police station. The blip is assigned to the variable '''policeBlip'''. | This creates a blip at the police station. The blip is assigned to the variable '''policeBlip'''. | ||
<div class="header" style="background-color: #00baad; color: #FFFFFF; border: 2px solid #00baad;"> | |||
<div style="margin: 10px 10px 10px 10px;"><b>Shared</b></div> | |||
<pre> | <pre> | ||
let policeBlip = mp.blips.new(60, new mp.Vector3(427.95, -981.05, 0), | let policeBlip = mp.blips.new(60, new mp.Vector3(427.95, -981.05, 0), | ||
| Line 46: | Line 48: | ||
}); | }); | ||
</pre> | </pre> | ||
</div> | |||
== See Also == | == See Also == | ||
{{Blip_definition}} | {{Blip_definition}} | ||
Revision as of 01:44, 29 September 2018
Shared
Creates a blip to display on your map & minimap.
Syntax
mp.blips.new(sprite, position,
{
name: name,
scale: scale,
color: color,
alpha: alpha,
drawDistance: drawDistance,
shortRange: shortRange,
rotation: rotation,
dimension: dimension,
});
Parameters
- *sprite: Int (Blip sprites)
- *position: Vector3
- name: String
- scale: Float
- color: Color ID (Blip colors)
- alpha: Int [0:255]
- drawDistance: Float
- shortRange: Boolean: Auto-hide on the minimap
- rotation: Float
- dimension: Int
* = Required
Examples
This creates a blip at the police station. The blip is assigned to the variable policeBlip.
Shared
let policeBlip = mp.blips.new(60, new mp.Vector3(427.95, -981.05, 0),
{
name: 'Los Santos Police Station',
color: 3,
shortRange: true,
});
See Also
- Functions
- Properties