SetBlipPosition
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
C# Syntax
Example
NAPI.Blip.SetBlipPosition(myBlip, new Vector3(0.0, 0.0, 0.0));