SetBlipPosition

From RAGE Multiplayer Wiki
Revision as of 15:29, 26 November 2019 by Muphy (talk | contribs) (Created page with "Sets the position of a blip. ==Syntax== <pre>void NAPI.Blip.SetBlipPosition(Blip blip, Vector3 newPos);</pre> === Required Arguments === *'''blip''': The blip to set the pos...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Sets the position of a blip.

Syntax

void NAPI.Blip.SetBlipPosition(Blip blip, Vector3 newPos);

Required Arguments

  • blip: The blip to set the position. This parameter input should be in Blip type.
  • newPos: The new position for the blip. This parameter input should be in Vector3 type.

Example

Sets any existing white blip to blue blip.

C# Syntax

Example

NAPI.Blip.SetBlipPosition(myBlip, new Vector3(0.0, 0.0, 0.0));