Blip::getCoords: Difference between revisions

From RAGE Multiplayer Wiki
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{ClientSide}}
Property to return the coordinates value of the blip.
Property to return the coordinates value of the blip.



Revision as of 23:14, 15 June 2018

Property to return the coordinates value of the blip.

Syntax

blip.getCoords();

Return Value

  • Vector3

Examples

Retrieving the coordinates 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 getBlipCoords = policeBlip.getCoords();

mp.gui.chat.push("Coords: " + JSON.stringify(getBlipCoords));
//Output: "Coords: {"x":407.95001220703125,"y":-961.0499877929688,"z":0}"

See also