SetBlipRouteColor: Difference between revisions

From RAGE Multiplayer Wiki
(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...")
 
No edit summary
 
Line 1: Line 1:
{{Warning|This feature is currently not implemented server-side.}}
Sets the color for the current's blip route.
Sets the color for the current's blip route.



Latest revision as of 15:08, 23 December 2022

This feature is currently not implemented server-side.

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);