SetBlipPosition: Difference between revisions
m (Xabi moved page NAPI.Blip.SetBlipPosition to SetBlipPosition) |
Latest revision as of 12:43, 27 November 2019
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));