GetBlipRouteColor: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "Gets the color for the current's blip route. {{CSharpContainer| {{#tag:syntaxhighlight|bool {{Template:CSharp_Serverside_namespace}}Blip.GetBlipRouteColor(NetHandle blip);|l...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Warning|This feature is currently not implemented server-side.}}
Gets the color for the current's blip route.
Gets the color for the current's blip route.




{{CSharpContainer|
{{CSharpContainer|
{{#tag:syntaxhighlight|bool {{Template:CSharp_Serverside_namespace}}Blip.GetBlipRouteColor(NetHandle blip);|lang=csharp}}
{{#tag:syntaxhighlight|int {{Template:CSharp_Serverside_namespace}}Blip.GetBlipRouteColor(NetHandle blip);|lang=csharp}}


{{Parameters}}
{{Parameters}}
*'''NetHandle:''' parameter input should be in '''NetHandle''' type
*'''blip:''' parameter input should be in '''NetHandle''' type





Latest revision as of 15:07, 23 December 2022

This feature is currently not implemented server-side.

Gets the color for the current's blip route.


C# Syntax

int NAPI.Blip.GetBlipRouteColor(NetHandle blip);

Parameters

  • blip: parameter input should be in NetHandle type


Example

Blip blip = NAPI..Blip.CreateBlip(new Vector3());
int color = NAPI.Blip.GetBlipRouteColor(blip);