GetBlipRouteVisible: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "Check whether the blip route is visible or not. {{CSharpContainer| {{#tag:syntaxhighlight|bool {{Template:CSharp_Serverside_namespace}}Blip.GetBlipRouteVisible(NetHandle bli...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Warning|This feature is currently not implemented server-side.}}
Check whether the blip route is visible or not.
Check whether the blip route is visible or not.


Line 6: Line 8:


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





Latest revision as of 15:08, 23 December 2022

This feature is currently not implemented server-side.

Check whether the blip route is visible or not.


C# Syntax

bool NAPI.Blip.GetBlipRouteVisible(NetHandle blip);

Parameters

  • blip: parameter input should be in NetHandle type


Example

Blip blip = NAPI..Blip.CreateBlip(new Vector3());
bool routeVisible = NAPI.Blip.GetBlipRouteVisible(blip);