GetBlipName
Gets the name of a blip.
- blip: The blip to get the color from. Parameter input should be in Blip type
{{#tag:syntaxhighlight|var list = Pools.GetAllBlips();
foreach (Blip blip in list) {
if (string.IsNullOrEmpty(``Blip.GetBlipName(blip)))
\{
``Blip.SetBlipName(blip, "My blip");
\}
} }} }}