SetBlipRouteColor

From RAGE Multiplayer Wiki
Revision as of 18:12, 28 November 2019 by Xabi (talk | contribs) (Created page with "Sets the color for the current's blip route. {{CSharpContainer| {{#tag:syntaxhighlight|void {{Template:CSharp_Serverside_namespace}}Blip.SetBlipRouteColor(NetHandle blip, in...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Sets the color for the current's blip route.


C# Syntax

void NAPI.Blip.SetBlipRouteColor(NetHandle blip, int color);

Parameters

  • blip: parameter input should be in NetHandle type
  • color: parameter input should be in int type


Example

Blip blip = NAPI..Blip.CreateBlip(new Vector3());
NAPI.Blip.SetBlipRouteColor(blip, 0);