GetBlipColor
Gets the color of a blip.
C# Syntax
int NAPI.Blip.GetBlipColor(Blip blip);
Parameters
- blip: The blip to get the color from. Parameter input should be in Blip type
Example
var list = NAPI.Pools.GetAllBlips();
foreach (Blip blip in list)
{
if (NAPI.Blip.GetBlipColor(blip) == 0)
{
NAPI.Blip.SetBlipColor(blip, 38);
}
}